errordlg2.m
来自「含有多种ICA算法的eeglab工具箱」· M 代码 · 共 58 行
M
58 行
% errordlg2() - same as errordlg for eeglab()%% Author: Arnaud Delorme, CNL / Salk Institute, 12 August 2002%% See also: inputdlg2(), questdlg2()%123456789012345678901234567890123456789012345678901234567890123456789012% Copyright (C) Arnaud Delorme, CNL / Salk Institute, arno@salk.edu%% This program is free software; you can redistribute it and/or modify% it under the terms of the GNU General Public License as published by% the Free Software Foundation; either version 2 of the License, or% (at your option) any later version.%% This program is distributed in the hope that it will be useful,% but WITHOUT ANY WARRANTY; without even the implied warranty of% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the% GNU General Public License for more details.%% You should have received a copy of the GNU General Public License% along with this program; if not, write to the Free Software% Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA% $Log: errordlg2.m,v $% Revision 1.4 2002/11/15 02:15:07 arno% header typos%% Revision 1.3 2002/08/28 01:04:34 arno% debugging beep%% Revision 1.2 2002/08/14 16:44:54 arno% beep update%% Revision 1.1 2002/08/12 18:48:22 arno% Initial revision%% Revision 1.3 2002/08/12 18:24:29 arno% debug%% Revision 1.2 2002/08/12 18:02:47 arno% debug%% Revision 1.1 2002/08/12 18:01:34 arno% Initial revision%function errordlg2(Prompt, Title);if exist('beep') == 5 beep;else disp(char(7));end;if nargin <2 Title = 'Error';end;questdlg2(Prompt, Title, 'OK', 'OK');
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?