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. |
---|
13 | function SubField=PLOT(hget_field) |
---|
14 | %--------------------------------------------------------- |
---|
15 | SubField=[]; %default |
---|
16 | if ~exist('hget_field','var') |
---|
17 | return |
---|
18 | end |
---|
19 | [SubField,errormsg]=read_get_field(hget_field); |
---|
20 | if ~isempty(errormsg) |
---|
21 | msgbox_uvmat('ERROR',['error in read_get_field/PLOT input:' errormsg]) |
---|
22 | end |
---|
Note: See
TracBrowser
for help on using the repository browser.