PAUSE4

Version 1.2.0.0 (1.72 KB) by Jiro Doke
Create true pause intervals while executing other lines of code.
1.9K Downloads
Updated 7 Jan 2010

View License

PAUSE4 Run code while pausing for specified time.

PAUSE4(n) ... PAUSE4 should be used as a clause that wraps code that is intended to run during a specified interval. n is in seconds, and it can be fractional. PAUSE4 without any arguments completes the pause routine.

Example:
PAUSE4(2);
<code 1>
PAUSE4;
<code 2>

This will run <code 1> during "pause" period, and <code 2> will be executed 2 seconds after PAUSE4(2) command.

This is useful if you want to maintain a regular interval, but do not want intermediate code to disrupt the interval. If the execution of <code 1> is longer than the pause period, <code 2> will execute immediately after the clause.

Cite As

Jiro Doke (2024). PAUSE4 (https://www.mathworks.com/matlabcentral/fileexchange/6834-pause4), MATLAB Central File Exchange. Retrieved .

MATLAB Release Compatibility
Created with R13SP1
Compatible with any release
Platform Compatibility
Windows macOS Linux
Categories
Find more on Creating and Concatenating Matrices in Help Center and MATLAB Answers

Community Treasure Hunt

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

Start Hunting!
Version Published Release Notes
1.2.0.0

Copyright update.

1.1.0.0

Add BSD license.

1.0.0.0