Changeset 577
- Timestamp:
- Mar 4, 2013, 8:25:08 AM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/series/merge_proj.m
r573 r577 83 83 end 84 84 85 %% root input file (s) andtype85 %% root input file type 86 86 RootPath=Param.InputTable(:,1); 87 87 RootFile=Param.InputTable(:,3); … … 221 221 %% check whether tps is needed, then calculate tps coefficients if needed 222 222 check_tps=0; 223 if ischar(Param.InputFields.FieldName) 224 Param.InputFields.FieldName={Param.InputFields.FieldName}; 223 if isfield(Param.InputFields,'FieldName') 224 if ischar(Param.InputFields.FieldName) 225 Param.InputFields.FieldName={Param.InputFields.FieldName}; 226 end 227 else 228 Param.InputFields.FieldName={}; 225 229 end 226 230 for ilist=1:numel(Param.InputFields.FieldName)
Note: See TracChangeset
for help on using the changeset viewer.