writeConsoleCont(te​xt,varargin)

버전 1.1.0.0 (3.97 KB) 작성자: Tom DeLonge
Continuosly Writes Output to the Matlab Console
다운로드 수: 15
업데이트 날짜: 2017/7/21

라이선스 보기

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

인용 양식

Tom DeLonge (2024). writeConsoleCont(text,varargin) (https://www.mathworks.com/matlabcentral/fileexchange/63778-writeconsolecont-text-varargin), MATLAB Central File Exchange. 검색됨 .

MATLAB 릴리스 호환 정보
개발 환경: R2017a
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 Graphics Object Programming에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!
버전 게시됨 릴리스 정보
1.1.0.0

Added more documentation on where it differs from other's contributions...

1.0.0.0