Changeset 292 for trunk/src/civ.m


Ignore:
Timestamp:
Nov 21, 2011, 11:12:06 AM (12 years ago)
Author:
sommeria
Message:

GUI civ patch2 corrected (SmoothingParam?).
uvmatand view_field updated with panels.
read_plot_param removed (replaced by the mostgeneral read_GUI)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/civ.m

    r291 r292  
    2323%TODO: search range
    2424
    25 % Last Modified by GUIDE v2.5 19-Nov-2011 19:26:20
     25% Last Modified by GUIDE v2.5 21-Nov-2011 10:58:28
    2626% Begin initialization code - DO NOT EDIT
    2727gui_Singleton = 1;
     
    41664166end
    41674167% set(handles.frame_patch2,'BackgroundColor',[1 1 0])
    4168 % set(handles.num_SmoothParam,'Visible','on')
     4168% set(handles.num_SmoothingParam,'Visible','on')
    41694169% set(handles.num_SmoothingParam,'Visible','on')
    41704170% set(handles.num_MaxDiff,'Visible','on')
     
    41924192% return
    41934193% set(handles.frame_patch2,'BackgroundColor',[0.831 0.816 0.784])
    4194 % set(handles.num_SmoothParam,'Visible','off')
     4194% set(handles.num_SmoothingParam,'Visible','off')
    41954195% set(handles.num_SmoothingParam,'Visible','off')
    41964196% set(handles.num_MaxDiff,'Visible','off')
     
    48674867if isequal(get(handles.CheckStereo,'Value'),0)
    48684868    set(handles.num_SubdomainSize,'Visible','on')
    4869     set(handles.num_SmoothParam,'Visible','on')
     4869    set(handles.num_SmoothingParam,'Visible','on')
    48704870else
    48714871    set(handles.num_SubdomainSize,'Visible','off')
    4872     set(handles.num_SmoothParam,'Visible','off')
     4872    set(handles.num_SmoothingParam,'Visible','off')
    48734873end
    48744874
     
    53495349    cmd=[Param.xml.PatchBin...
    53505350        ' -f ' filename '.nc -m ' num2str(Param.(patchname).Nx)...
    5351         ' -n ' num2str(Param.(patchname).Ny) ' -ro ' num2str(Param.(patchname).SmoothParam)...
     5351        ' -n ' num2str(Param.(patchname).Ny) ' -ro ' num2str(Param.(patchname).SmoothingParam)...
    53525352        ' -nopt ' num2str(Param.(patchname).SubdomainSize) ...
    53535353        '  > ' filename '.' lower(patchname) '.log 2>&1']; % redirect standard output to the log file
     
    53555355    cmd=['"' Param.xml.PatchBin...
    53565356        '" -f "' filename '.nc" -m ' num2str(Param.(patchname).Nx)...
    5357         ' -n ' num2str(Param.(patchname).Ny) ' -ro ' num2str(Param.(patchname).SmoothParam)...
     5357        ' -n ' num2str(Param.(patchname).Ny) ' -ro ' num2str(Param.(patchname).SmoothingParam)...
    53585358        ' -nopt ' num2str(Param.(patchname).SubdomainSize)...
    53595359        '  > "' filename '.' lower(patchname) '.log" 2>&1']; % redirect standard output to the log file
     
    54265426        'del "' filename '.cmx" \n'];
    54275427end
    5428 
Note: See TracChangeset for help on using the changeset viewer.