[8] | 1 | %'read_plot_param': read plotting parameters from the interface uvmat
|
---|
| 2 | %------------------------------------------
|
---|
| 3 | % function PlotParam=read_plot_param(handles)
|
---|
| 4 | %
|
---|
| 5 | % OUTPUT:
|
---|
| 6 | % PlotParam: structure containing the values of all the relevant plotting parameters
|
---|
| 7 | %
|
---|
| 8 | % INPUT:
|
---|
| 9 | % handles: structure containing the handles of the relevant uicontrols in the uvmat interface
|
---|
| 10 | %
|
---|
| 11 | % -- TODO: get the handles using get_plot_handles and findobj as default input --
|
---|
| 12 |
|
---|
| 13 | function PlotParam=read_plot_param(handles)
|
---|
| 14 |
|
---|
| 15 | PlotParam.Auto_xy=get(handles.auto_xy,'Value');
|
---|
[61] | 16 | PlotParam.FixedLimits=get(handles.FixedLimits,'Value');
|
---|
[8] | 17 |
|
---|
| 18 | % scalars
|
---|
| 19 | Scalar.MaxA=str2double(get(handles.MaxA,'String'));
|
---|
| 20 | Scalar.MinA=str2double(get(handles.MinA,'String'));
|
---|
| 21 | Scalar.AutoScal=get(handles.AutoScal,'Value');
|
---|
| 22 | Scalar.BW=get(handles.BW,'Value');
|
---|
| 23 | Scalar.Contours=get(handles.Contours,'Value')==2;
|
---|
| 24 | Scalar.IncrA=str2double(get(handles.IncrA,'String'));
|
---|
| 25 | PlotParam.Scalar=Scalar;
|
---|
| 26 |
|
---|
| 27 | %vectors
|
---|
| 28 | Vectors.VecScale=str2double(get(handles.VecScale,'String'));
|
---|
| 29 | Vectors.AutoVec=get(handles.AutoVec,'Value');%automatic vector length
|
---|
| 30 | Vectors.HideFalse=get(handles.HideFalse,'Value');
|
---|
| 31 | Vectors.HideWarning=get(handles.HideWarning,'Value');
|
---|
| 32 | Vectors.decimate4=get(handles.decimate4,'Value');% =1; for reducing the nbre of vectors
|
---|
| 33 |
|
---|
| 34 | %vector color
|
---|
| 35 | code_list=get(handles.color_code,'String');
|
---|
| 36 | val=get(handles.color_code,'Value');
|
---|
| 37 | % menu_col=get(handles.col_vec,'String');
|
---|
| 38 | % menu_val=get(handles.col_vec,'Value');
|
---|
| 39 | colcode1=str2double(get(handles.colcode1,'String'));% first threshold for rgb, first value for'continuous'
|
---|
| 40 | colcode2=str2double(get(handles.colcode2,'String'));% second threshold for rgb, last value (saturation) for 'continuous'
|
---|
| 41 |
|
---|
| 42 | Vectors.ColorCode=code_list{val}; % option of color code for vectors
|
---|
| 43 | Vectors.FixedCbounds=get(handles.AutoVecColor,'Value');% =1; fixed scale for color vector, =0 otherwise (default)
|
---|
| 44 | Vectors.MinC=str2num(get(handles.min_vec,'String')); % imposed min of C, (needed if .FixedCbounds=1)
|
---|
| 45 | Vectors.MaxC=str2num(get(handles.max_vec,'String')); % imposed max of C, needed if .FixedCbounds=1
|
---|
| 46 | if Vectors.MaxC <= Vectors.MinC
|
---|
| 47 | Vectors.ColorCode='black';
|
---|
| 48 | else
|
---|
| 49 | Vectors.colcode1=Vectors.MinC+(colcode1-Vectors.MinC)/(Vectors.MaxC-Vectors.MinC);% relative thresholds
|
---|
| 50 | Vectors.colcode2=Vectors.MinC+(colcode2-Vectors.MinC)/(Vectors.MaxC-Vectors.MinC);
|
---|
| 51 | end
|
---|
| 52 | PlotParam.Vectors=Vectors;
|
---|
| 53 |
|
---|