- What are you doing? Please describe your homework assignment. What were you given, and what are you supposed to accomplish? What are your constraints?
- What is not working? (What is it not doing that it should do? What is it doing that it shouldn’t do?)
- Where is the problem? If there is an error, what is the error and what line does it refer to? (Copy the entire red error message from the Command Window and paste it to your question.)
Info
此问题已关闭。 请重新打开它进行编辑或回答。
3-D Thermal Problem
2 次查看(过去 30 天)
显示 更早的评论
I'm working on my Home Work Problem, it took more than 9 weeks still I'm not able to solve. There are many errors, can anyone help me on this please and most important thing is I'M NEW TO MATLAB.
2 个评论
Star Strider
2014-5-8
There must be hundreds of lines of code here.
回答(1 个)
Star Strider
2014-5-8
‘Preallocating for speed’ means creating a matrix of zeros before you calculate the elements of the matrix in a loop. The reason is that MATLAB can then simply fill the preallocated matrix in the loop, and not have to create memory space for each element as it is created. The ‘preallocating for speed’ isn’t an error, but a (quite valuable) suggestion.
For example without preallocating:
tic
for k1 = 1:500
for k2 = 1:500
A(k1, k2) = k1.^(k2/100);
end
end
toc
Elapsed time is 0.142800 seconds.
Preallocating:
A = zeros(500,500);
tic
for k1 = 1:500
for k2 = 1:500
A(k1, k2) = k1.^(k2/100);
end
end
toc
Elapsed time is 0.063392 seconds.
Even including the preallocation step in the time interval: Elapsed time is 0.066296 seconds.
So preallocating definitely saves time.
0 个评论
此问题已关闭。
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!