disp() output to command line significantly delayed, not right in time relative to the further program progress?

11 views (last 30 days)
My program cycles through some loops, and for each turn I want to print a line telling me which cycle of the loop I am processing right now, thus writing some kind of progress information to the command line. But it appears as if the lines are not written to the command line successively in time when calling the disp() function, but as if the lines become all printed together in a block of lines once all looping has finished.
I have the feeling, that this behaviour also appears in other ocasions, and not only in loop processing, that MATLAB in general produces delays in the command line output, that the command line output is not synchronous with the program progress.
Is there any way to force the line output to become written to the command line when called, before any new part of the program is subsequently processed?

Accepted Answer

Jacob Halbrooks
Jacob Halbrooks on 25 Feb 2014
I would first suggest trying FPRINTF in place of DISP to see if that produces different behavior. Here is an example call:
fprintf('Disp at command line\n')
If the display is still delayed, consider inserting a DRAWNOW call after displaying the text to force MATLAB to update. Another common function used to force MATLAB to update is PAUSE.
  1 Comment
Marco
Marco on 25 Feb 2014
Thanks!!!! It works.
I didn´t see any difference from changing between the disp() function and the fprintf() function, though. But the DRAWNOW call solved my problem perfectly! Haven´t know about that call before. So, thanks again!

Sign in to comment.

More Answers (0)

Categories

Find more on Loops and Conditional Statements in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!