【Matlab学习笔记】【函数学习】一(延时函数pause)

来源:互联网 发布:淘宝网红男装店 编辑:程序博客网 时间:2024/06/15 02:27

采用MATLAB中的延时函数pause:

Halt execution temporarily

使用方法:
pause
pause(n)
pause on
pause off

函数描述:

pause, by itself, causes M-files to stop and wait for you to press any key before continuing.

pause(n) pauses execution for n seconds before continuing, where n can be any nonnegative real number. The resolution of the clock is platform specific. A fractional pause of 0.01 seconds should be supported on most platforms.

pause(inf) puts you into an infinite loop. To return to the MATLAB prompt, type Ctrl+C.

pause on allows subsequent pause commands to pause execution.

pause off ensures that any subsequent pause or pause(n) statements do not pause execution. This allows normally interactive scripts to run unattended.


转自http://blog.sina.com.cn/s/blog_4aee288a0100ibri.html

0 0
原创粉丝点击