Progress monitor (progress bar) that works with parfor

Displays the percentage of parfor iterations which have completed.

Ahora está siguiendo esta publicación

Monitoring the progress of a long-running parfor loop is not straightforward because the workers cannot communicate. This function gets around that limitation by storing the progress in a text file.

Example usage:

N = 100;
parfor_progress(N); % Initialize
parfor i=1:N
pause(rand); % Replace with real code
parfor_progress; % Count
end
parfor_progress(0); % Clean up

Citar como

Jeremy (2026). Progress monitor (progress bar) that works with parfor (https://la.mathworks.com/matlabcentral/fileexchange/32101-progress-monitor-progress-bar-that-works-with-parfor), MATLAB Central File Exchange. Recuperado .

Información general

Compatibilidad con la versión de MATLAB

  • Compatible con cualquier versión

Compatibilidad con las plataformas

  • Windows
  • macOS
  • Linux
Versión Publicado Notas de la versión Action
1.2.0.0

It now displays a real (and pretty) progress bar.

1.1.0.0

Slightly simplified the function.

1.0.0.0