source: MML/trunk/applications/common/sleep.m @ 4

Last change on this file since 4 was 4, checked in by zhangj, 10 years ago

Initial import--MML version from SOLEIL@2013

File size: 150 bytes
Line 
1function sleep(Delay)
2%SLEEP - Same as pause
3% sleep(Delay [sec])
4%
5% Written by Greg Portmann
6
7
8if Delay > 0 && ~isempty(Delay)
9    pause(Delay);
10end
Note: See TracBrowser for help on using the repository browser.