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

조회 수: 5 (최근 30일)
Jakob Sievers
Jakob Sievers 2014년 11월 5일
편집: Sean de Wolski 2014년 11월 5일
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

답변 (1개)

Sean de Wolski
Sean de Wolski 2014년 11월 5일
편집: Sean de Wolski 2014년 11월 5일
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.

카테고리

Help CenterFile Exchange에서 Parallel for-Loops (parfor)에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by