reverse-shooting

Matlab scripts for reverse shooting
Log | Files | Refs | README

wait.m (151B)


      1 function []=wait(str);
      2 
      3 % wait.m  -- press any key to continue
      4 if exist('str')~=1;
      5    disp 'Press any key to continue';
      6 else;
      7    disp(str);
      8 end;
      9 pause;