Info

此问题已关闭。 请重新打开它进行编辑或回答。

3-D Thermal Problem

2 次查看(过去 30 天)
Yattapu Yaswanth
Yattapu Yaswanth 2014-5-8
关闭: MATLAB Answer Bot 2021-8-20
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
Star Strider 2014-5-8
There must be hundreds of lines of code here.
  1. What are you doing? Please describe your homework assignment. What were you given, and what are you supposed to accomplish? What are your constraints?
  2. What is not working? (What is it not doing that it should do? What is it doing that it shouldn’t do?)
  3. 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.)
Yattapu Yaswanth
Yattapu Yaswanth 2014-5-8
how to preallocate for speed for a line "Ttot might be growing inside a loop. consider preallocating for speed" can you explain on this how to preallocate for speed
I have seen these errors for every line so can you explain in preallocating for speed for these type of issues

回答(1 个)

Star Strider
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.

此问题已关闭。

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by