Changeset 11642
- Timestamp:
- 03/06/12 09:54:51 (13 years ago)
- Location:
- issm/trunk-jpl/src/m/qmu
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/m/qmu/dakota_in_data.m
r5215 r11642 80 80 if strcmpi(params.analysis_driver,'matlab') && ... 81 81 isempty(params.analysis_components) 82 [pathstr,name,ext ,versn] = fileparts(filei);83 params.analysis_components=fullfile(pathstr,[name '.m' versn]);82 [pathstr,name,ext] = fileparts(filei); 83 params.analysis_components=fullfile(pathstr,[name '.m']); 84 84 end 85 85 -
issm/trunk-jpl/src/m/qmu/dakota_in_write.m
r11630 r11642 234 234 param_write(fidi,'\t ','evaluation_static_scheduling','','\n',params); 235 235 if ~isempty(params.analysis_components) 236 [pathstr,name,ext ,versn] = fileparts(params.analysis_components);236 [pathstr,name,ext] = fileparts(params.analysis_components); 237 237 if isempty(ext) 238 238 ext='.m'; 239 239 end 240 params.analysis_components=fullfile(pathstr,[name ext versn]);240 params.analysis_components=fullfile(pathstr,[name ext]); 241 241 param_write(fidi,'\t ','analysis_components',' = ''','''\n',params); 242 242 end
Note:
See TracChangeset
for help on using the changeset viewer.