Ahora está siguiendo esta publicación
- Verá actualizaciones en las notificaciones de contenido en seguimiento.
- Podrá recibir correos electrónicos, en función de las preferencias de comunicación que haya establecido.
Extended version of the idea Loren described here:
https://blogs.mathworks.com/loren/2007/08/01/monitoring-progress-of-a-calculation/#7
Say you have a loop that's running for a while. You're not sure whether it's worth getting a cup of coffee or not, so you display the current iteration using "disp(i)". At some point you're Matlab console is flooded with numbers, that's annoying. Especially if your loop does also display warnings. That's where this function comes to play. You just display the iteration using
writeConsoleCont(i);
In contrast to other contributions I found, this code is able to handle multiple lines of continuously updated text and has a basic plotting capabilities:
writeConsoleCont(); % initialization - always execute this first
for k = 0:100
writeConsoleCont(k); % numerical data
writeConsoleCont("Some text and plot", k, k^2);
pause(0.2);
end
Citar como
Tom DeLonge (2026). writeConsoleCont(text,varargin) (https://la.mathworks.com/matlabcentral/fileexchange/63778-writeconsolecont-text-varargin), MATLAB Central File Exchange. Recuperado .
Agradecimientos
Inspirado por: Overwritable message outputs to commandline window
Categorías
Más información sobre Creating, Deleting, and Querying Graphics Objects en Help Center y MATLAB Answers.
Información general
- Versión 1.1.0.0 (3,97 KB)
Compatibilidad con la versión de MATLAB
- Compatible con cualquier versión
Compatibilidad con las plataformas
- Windows
- macOS
- Linux
