Home > arte3.2.0 > RAPID > functions > WaitTime.m

WaitTime

PURPOSE ^

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

SYNOPSIS ^

function WaitTime(seconds)

DESCRIPTION ^

%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
   WAITTIME(seconds) stops execution and waits for a specific amount of time
   Example: 
   WaitTime(robot, 5);
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
0002 %   WAITTIME(seconds) stops execution and waits for a specific amount of time
0003 %   Example:
0004 %   WaitTime(robot, 5);
0005 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
0006 
0007 % Copyright (C) 2012, by Arturo Gil Aparicio
0008 %
0009 % This file is part of ARTE (A Robotics Toolbox for Education).
0010 %
0011 % ARTE is free software: you can redistribute it and/or modify
0012 % it under the terms of the GNU Lesser General Public License as published by
0013 % the Free Software Foundation, either version 3 of the License, or
0014 % (at your option) any later version.
0015 %
0016 % ARTE is distributed in the hope that it will be useful,
0017 % but WITHOUT ANY WARRANTY; without even the implied warranty of
0018 % MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
0019 % GNU Lesser General Public License for more details.
0020 %
0021 % You should have received a copy of the GNU Leser General Public License
0022 % along with ARTE.  If not, see <http://www.gnu.org/licenses/>.
0023 function WaitTime(seconds)
0024 
0025 fprintf('\nCall to WaitTime');
0026 
0027 pause on
0028 pause(seconds);
0029 
0030

Generated on Fri 03-Jan-2014 12:20:01 by m2html © 2005