Run into "Paused: Press any key"

73 次查看(过去 30 天)
Shinuo Weng
Shinuo Weng 2021-6-10
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?

回答(1 个)

Jan
Jan 2021-6-10
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.
  1 个评论
Shinuo Weng
Shinuo Weng 2021-6-10
HI Jan,
Thanks for youre reply. I will try what you recommended. That's a real old bummer...
Last week, there was a suddent problem with the Java enviroment variable. I tried to rest the variable under somewhere I don't remember now(this PC?), but it didn't work. I had to uninstal and reinstal to solve the problem I don't know if it is ever related...Just to share.

请先登录,再进行评论。

类别

Help CenterFile 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!

Translated by