Changeset 19370
- Timestamp:
- 05/14/15 15:59:15 (10 years ago)
- Location:
- issm/trunk-jpl
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/solve/parseresultsfromdisk.m
r19348 r19370 62 62 results(index).step=result.step; 63 63 results(index).(result.fieldname)=result.field; 64 if(result.time~=-9999), 65 results(index).time=result.time; 66 end 64 67 65 68 %read next result … … 177 180 if strcmp(fieldname,'BalancethicknessThickeningRate'), 178 181 field = field*yts; 179 elseif strcmp(fieldname,'Time'),180 field = field/yts;181 182 elseif strcmp(fieldname,'HydrologyWaterVx'), 182 183 field = field*yts; … … 206 207 207 208 result.fieldname=fieldname; 208 result.time=time ;209 result.time=time/yts; 209 210 result.step=step; 210 211 result.field=field; -
issm/trunk-jpl/test/NightlyRun/IdFromString.m
r19093 r19370 27 27 28 28 %Process string (delete return carriage); 29 ids_raw=strsplit (ids_raw,char(10));29 ids_raw=strsplit_strict(ids_raw,char(10)); 30 30 ids_raw=ids_raw(1:end-1); 31 31 for i=1:length(ids_raw),
Note:
See TracChangeset
for help on using the changeset viewer.