pause-clc-fprintf-pause ... fprintf is ignored
이전 댓글 표시
My thinking was that this:
fprintf('Test %d',1)
pause
clc
fprintf('Test %d',2)
pause
should:
- Print "Test 1"
- Wait for the user to press a key
- Clear the Command Window and print "Test 2"
- Exit when the user presses a key
However, "Test 2" is never printed. Instead a blank screen is displayed. What am I missing?
I'm using MATLAB Online (R2019b)
댓글 수: 5
Daniel M
2019년 12월 3일
I've had this happen to me before where a command immediately after a clc will print to screen, but then get cleared anyways. It's like MATLAB calls the clc function behind the scenes, runs the fprintf command, and then the clc actually executes.
I wonder if the issue will be solved if you add drawnow() after the clc. Let me know!
Fangjun Jiang
2019년 12월 3일
works as expected when I try it in R2019b.
Paul Dostert
2019년 12월 3일
Paul Dostert
2019년 12월 4일
Navya Seelam
2019년 12월 6일
Hi,
I have brought this issue to the notice of our developers. They will investigate the matter further.
답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Entering Commands에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!