do disp iterations slow down the code?
44 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Thales
el 28 de Abr. de 2017
Comentada: Thales
el 28 de Abr. de 2017
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 comentario
Joseph Cheng
el 28 de Abr. de 2017
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
Respuesta aceptada
John D'Errico
el 28 de Abr. de 2017
Editada: John D'Errico
el 28 de Abr. de 2017
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.
Más respuestas (0)
Ver también
Categorías
Más información sobre Loops and Conditional Statements en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!