Legend:
- Unmodified
- Added
- Removed
-
trunk/src
- Property svn:ignore
-
old new 1 @xmltree 2 PARAM.xml 1 3 PARAM_WIN.xml 4 XML_SCHEMAS 5 bin 6 toolbox_calib 7 uvmat_doc
-
- Property svn:ignore
-
trunk/src/civ.m
r97 r100 2137 2137 end 2138 2138 end 2139 test_interp=get(handles.test_interp,'Value'); 2140 if ~test_interp && isfield(sparam,'PatchBin') 2139 %test_interp=get(handles.test_interp,'Value'); 2140 test_interp=0; 2141 if isfield(sparam,'PatchBin') 2141 2142 if ~exist(sparam.PatchBin,'file') 2142 2143 sparam.PatchBin=fullfile(path_UVMAT,sparam.PatchBin); 2143 2144 end 2144 2145 end 2145 if test_interp && isfield(sparam,'PatchNewBin')2146 if ~exist(sparam.PatchNewBin,'file')2147 sparam.PatchNewBin=fullfile(path_UVMAT,sparam.PatchNewBin);2148 end2149 end2146 % if test_interp && isfield(sparam,'PatchNewBin') 2147 % if ~exist(sparam.PatchNewBin,'file') 2148 % sparam.PatchNewBin=fullfile(path_UVMAT,sparam.PatchNewBin); 2149 % end 2150 % end 2150 2151 if isfield(sparam,'FixBin') 2151 2152 % fixBin=sparam.FixBin; … … 4503 4504 set(handles.nx_patch1_title,'Visible','on') 4504 4505 set(handles.ny_patch1_title,'Visible','on') 4505 if ~isempty(patch_newBin)4506 set(handles.test_interp,'Visible','on');4507 end4506 % if ~isempty(patch_newBin) 4507 % set(handles.test_interp,'Visible','on'); 4508 % end 4508 4509 set(handles.get_gridpatch1,'Visible','on') 4509 4510 set(handles.grid_patch1,'string','none'); … … 4524 4525 set(handles.nx_patch1_title,'Visible','off') 4525 4526 set(handles.ny_patch1_title,'Visible','off') 4526 set(handles.test_interp,'Visible','off')4527 %set(handles.test_interp,'Visible','off') 4527 4528 set(handles.get_gridpatch1,'Visible','off') 4528 4529 set(handles.grid_patch1,'Visible','off') -
trunk/src/nc2struct.m
r89 r100 256 256 VarName(indstr)=[]; 257 257 end 258 eval(['Data.' VarName '= netcdf.getVar(nc,var_index(ivar)-1);'])%read the variable data258 eval(['Data.' VarName '=double(netcdf.getVar(nc,var_index(ivar)-1));'])%read the variable data 259 259 %eval(['siz=size(Data.' VarName ');']) 260 260 % if numel(siz)<=2 -
trunk/src/series.m
r89 r100 702 702 nb_field2=max(floor((max(num_j1)+max(num_j2))/2)); 703 703 end 704 if isempty(nb_field) 704 if isempty(nb_field)||isnan(nb_field) 705 705 nb_field_str='?'; 706 706 nb_field_str2='?'; … … 1262 1262 num1=num1(ind); 1263 1263 end 1264 set(handles.first_i,'String',num2str(num1(1))); 1265 set(handles.last_i,'String',num2str(num1(end))); 1264 if ~isempty(num1) 1265 set(handles.first_i,'String',num2str(num1(1))); 1266 set(handles.last_i,'String',num2str(num1(end))); 1267 end 1266 1268 testupdate=1; 1267 1269 elseif isequal(mode,'series(Dj)')
Note: See TracChangeset
for help on using the changeset viewer.