Changeset 1154 for trunk/src/uvmat.m


Ignore:
Timestamp:
Jul 7, 2024, 11:22:00 PM (3 months ago)
Author:
sommeria
Message:

various improvements

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/uvmat.m

    r1153 r1154  
    20162016%------------------------------------------------------------------------
    20172017% open the GUI 'series'
    2018 function MenuSeries_Callback(hObject, eventdata, handles)
     2018function MenuRun1_Callback(hObject, eventdata, handles)
    20192019%------------------------------------------------------------------------
    20202020Param=read_GUI(handles.uvmat);
     
    20232023
    20242024% --------------------------------------------------------------------
    2025 function MenuPIV_Callback(hObject, eventdata, handles)
     2025function MenuRun2_Callback(hObject, eventdata, handles)
    20262026Param=read_GUI(handles.uvmat);
    20272027Param.HiddenData=get(handles.uvmat,'UserData');
     
    20332033series('ActionName_Callback',hObject,eventdata,hhseries); %file input with xml reading  in uvmat, show the image in phys coordinates
    20342034
    2035 %------------------------------------------------------------------------
    2036 % -- open the GUI civ.fig for PIV
    2037 function MenuCIVx_Callback(hObject, eventdata, handles)
    2038 %------------------------------------------------------------------------
    2039  [RootPath,SubDir,RootFile,FileIndex,FileExt]=read_file_boxes(handles);
    2040  FileName=[fullfile(RootPath,SubDir,RootFile) FileIndex FileExt];
    2041 civ(FileName);% interface de civ(not in the uvmat file)
     2035% %------------------------------------------------------------------------
     2036% % -- open the GUI civ.fig for PIV
     2037% function MenuCIVx_Callback(hObject, eventdata, handles)
     2038% %------------------------------------------------------------------------
     2039% [RootPath,SubDir,RootFile,FileIndex,FileExt]=read_file_boxes(handles);
     2040% FileName=[fullfile(RootPath,SubDir,RootFile) FileIndex FileExt];
     2041% civ(FileName);% interface de civ(not in the uvmat file)
    20422042
    20432043%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
     
    26032603        set(handles.ColorScalar,'String',ColorList)
    26042604        set(handles.Vectors,'Visible','on')
    2605         %set(handles.Coord_x,'Value',1);
    26062605        set(handles.Coord_x,'String','X');
    26072606        set(handles.Coord_y,'String','Y');
     2607        set(handles.MenuRun3,'Label','test_filter_tps')
    26082608    case {'netcdf','mat'}
    26092609        set(handles_Fields,'Value',1)
     
    61086108
    61096109
    6110 
    61116110% --------------------------------------------------------------------
    61126111% --- Executes on button press in CheckTable.
     
    61216120
    61226121
    6123 
    6124 
    6125 
    6126 
    6127 
     6122% --------------------------------------------------------------------
     6123function MenuRun3_Callback(hObject, eventdata, handles)
     6124Param=read_GUI(handles.uvmat);
     6125Param.HiddenData=get(handles.uvmat,'UserData');
     6126hseries=series(Param);
     6127hhseries=guidata(hseries);
     6128ActionMenu=get(hhseries.ActionName,'String');
     6129index_action=find(strcmp('test_filter_tps',ActionMenu));
     6130set(hhseries.ActionName,'Value',index_action);
     6131series('ActionName_Callback',hObject,eventdata,hhseries); %file input with xml reading  in uvmat, show the image in phys coordinates
Note: See TracChangeset for help on using the changeset viewer.