Filter löschen
Filter löschen

How do I clear the command window in a parfor loop?

2 Ansichten (letzte 30 Tage)
Jakob Sievers
Jakob Sievers am 5 Nov. 2014
Bearbeitet: Sean de Wolski am 5 Nov. 2014
It seems that clearing the command window (clc) is not possible in parfor. How do I achieve this then? I.e. i'd like this loop:
N=50;
parfor ii=1:N
rv=rand(1);
pause(rv)
clc
disp(rv)
end
To behave similarly to:
N=50;
for ii=1:N
rv=rand(1);
pause(rv)
clc
disp(rv)
end

Antworten (1)

Sean de Wolski
Sean de Wolski am 5 Nov. 2014
Bearbeitet: Sean de Wolski am 5 Nov. 2014
The clc command does clear the command window of the worker it was run on, not the client session.
One possible workaround would be to use fprintf with \b to "erase" what you've done essentially updating the same few characters. However, I'm not sure the how the command window would react to multiple workers concurrently trying to access it.

Kategorien

Mehr zu Parallel for-Loops (parfor) finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by