Run into "Paused: Press any key"
조회 수: 30 (최근 30일)
이전 댓글 표시
I'm using Matlab 2020a to do some simulation. The old code has been used for monthly, but starting from last week it always run into an automatic pause showing "Paused: Press any key" on the lower left cornor of the command Window...Sometimes, it paused in a few minutes, and sometimes in about an hour...I do have two lines
pause(1);
pause(0.01);
in the for loop, but it would be run every loop. So I don't know where this pause unexpected come from
Any idea?

댓글 수: 0
답변 (1개)
Jan
2021년 6월 10일
This problem appeared in R2016a already: https://www.mathworks.com/matlabcentral/answers/278430-why-does-program-execution-hang-when-using-pause
The workaround have been strange. Do you need pause command in your code? Try to replaces them by drawnow. Do you need Matlab to wait for a certain time? Then try:
java.lang.Thread.sleep(duration*1000)
This has less jitter than pause() also.
참고 항목
카테고리
Help Center 및 File Exchange에서 Introduction to Installation and Licensing에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!