source: trunk/src/disp_uvmat.m @ 681

Last change on this file since 681 was 667, checked in by sommeria, 11 years ago

a few bugs corrected.
multimask introduced in series
displ_uvmat transformed into disp_uvmat

File size: 591 bytes
Line 
1%'disp_uvmat': display a message using  msgbox_uvmat or on the log file in batch mode
2%--------------------------------------------------------------------------
3%
4%  displ_uvmat(title,display_str,checkrun)
5%
6%  INPUT:
7%  title: ='ERROR' or 'WARNING', as requested as input of  msgbox_uvmat.m
8%  display_str: message string to display
9%  checkrun: =1: run mode, use of msgbox_uvmat window
10%  checkrun: =0: batch mode: text display on log file
11
12function disp_uvmat(title,display_str,checkrun)
13if checkrun
14    msgbox_uvmat(title,display_str,'')
15else
16    disp([title ': ' display_str])
17end
18   
Note: See TracBrowser for help on using the repository browser.