IRootLab
An Open-Source MATLAB toolbox for vibrational biospectroscopy
irerrordlg.m
Go to the documentation of this file.
1 %>@ingroup guigroup
2 %>@file
3 %>@brief Error dialog
4 
5 function irerrordlg(errorstring, dlgname)
6 if nargin < 2
7  dlgname = 'Error';
8 end;
9 h = errordlg(errorstring, dlgname, 'modal');
10 uiwait(h);
function irerrordlg(in errorstring, in dlgname)