do disp iterations slow down the code?
44 次查看(过去 30 天)
显示 更早的评论
If I have an iterative solver, i.e.,
while norm(P-Pold) > eps;
...
disp(sprintf('%10d %10.4f',k,norm(P-Pold)));
end
Does display the values of the variables slow down the code? I don't have to use the disp function, I could just not use the semicolon when calculating it
while normP > eps;
...
k = k+1
normP = norm(P-Pold)
end
The question just if printing every variable on the Command Window makes the code runs slower.
1 个评论
Joseph Cheng
2017-4-28
without appears to run sower
tic
for ind = 1:100
disp(sprintf('%f',ind))
end
spinup = toc;
tic
for ind = 1:100
disp(sprintf('%f',ind))
end
time1 = toc;
tic
for ind = 1:100
ind
end
time2= toc
tic
for ind = 1:100
disp(ind)
end
time3 = toc;
[spinup time1 time2 time3]
the above you can see which method takes longer. but i think the time should be consequential unless you're talking about a HUGE number of displays
采纳的回答
John D'Errico
2017-4-28
编辑:John D'Errico
2017-4-28
Of course dumping stuff to the command window will slow things down. That forces MATLAB to format your variables for display. Plus, it forces MATLAB to scroll the command window. How would you not expect it to slow things down? Everything you do that takes away from actual computations will always slow the calculations down.
The point is, if you want fast code, then DON'T dump everything out.
At most, display information rarely, only what will be useful, perhaps to show that your code is working to your satisfaction.
Learn to use waitbars when that will help.
It is often useful to display information not every iteration, but perhaps every 100th iteration, etc.
Garrulous display is a killer of efficient code, even if the code is well written otherwise.
In my codes, I sometimes have used a multi-level display flag. Thus if I am debugging code, I want an in-depth display of information. But normal usage requires less information displayed. And when I know things are working perfectly, I allow all display to be turned off.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Loops and Conditional Statements 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!