source: trunk/src/get_field/PLOT.m @ 295

Last change on this file since 295 was 170, checked in by sommeria, 13 years ago

cleaning of documentation

File size: 626 bytes
Line 
1% 'PLOT.m': standar  display function for the the GUI  get_field
2%  GUI_input=PLOT(hget_field)
3%
4% OUTPUT:
5% GUI_input: option for display in the GUI get_field
6%
7%INPUT:
8% hget_field: handles of the GUI get_field
9%
10
11%---------------------------------------------------------
12% --- Executes on button press in RUN.
13function SubField=PLOT(hget_field)
14%---------------------------------------------------------
15SubField=[]; %default
16if ~exist('hget_field','var')
17    return
18end
19[SubField,errormsg]=read_get_field(hget_field);
20if ~isempty(errormsg)
21    msgbox_uvmat('ERROR',['error in read_get_field/PLOT input:' errormsg])
22end
Note: See TracBrowser for help on using the repository browser.