function watchit(msg) Displays a warning message on the Matlab command line. Used by several Mass Univariate ERP Toolbox functions.
0001 function watchit(msg) 0002 %function watchit(msg) 0003 % 0004 % Displays a warning message on the Matlab command line. Used by 0005 % several Mass Univariate ERP Toolbox functions. 0006 % 0007 0008 disp(' '); 0009 disp('****************** Warning ******************'); 0010 disp(msg); 0011 disp(' ');