Home > . > warndlg_uvmat.m

warndlg_uvmat

PURPOSE ^

'warndlg_uvmat': display warning message (error, warning, confirmation) in a given figure

SYNOPSIS ^

function hwarn=warndlg_uvmat(warntext,title)

DESCRIPTION ^

'warndlg_uvmat': display warning message (error, warning, confirmation) in a given figure 
---------------------------------------------------------------------
 hwarn=warndlg_uvmat(warntext,title) 
---------------------------------------------------------------------
 OUTPUT:
 hwarn: string representing the file name (including path)

 INPUT:
 warntext: text to display
 title:  string indicating the type of message box:
          title= 'ERROR', 'WARNING', 'CONFIRMATION' .

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 %'warndlg_uvmat': display warning message (error, warning, confirmation) in a given figure
0002 %---------------------------------------------------------------------
0003 % hwarn=warndlg_uvmat(warntext,title)
0004 %---------------------------------------------------------------------
0005 % OUTPUT:
0006 % hwarn: string representing the file name (including path)
0007 %
0008 % INPUT:
0009 % warntext: text to display
0010 % title:  string indicating the type of message box:
0011 %          title= 'ERROR', 'WARNING', 'CONFIRMATION' .
0012 
0013 function hwarn=warndlg_uvmat(warntext,title)
0014 hwarn=msgbox_uvmat(title,warntext);
0015 %if isequal(title,'ERROR')||isequal(title,'WARNING')
0016     %delete(hwarn)
0017 %end
0018

Generated on Fri 13-Nov-2009 11:17:03 by m2html © 2003