source: issm/oecreview/Archive/11618-11630/ISSM-11629-11630.diff

Last change on this file was 11991, checked in by Eric.Larour, 13 years ago

oecreview from 11518 to present

File size: 835 bytes
  • proj/ice/larour/issm-uci-clean/trunk-jpl/src/m/qmu/dakota_in_write.m

     
    6262if ~exist('filei' ,'var') || isempty(filei)
    6363    filei=input('Dakota input file to write?  ','s');
    6464end
    65 [pathstr,name,ext,versn] = fileparts(filei);
     65[pathstr,name,ext] = fileparts(filei);
    6666if isempty(ext)
    6767% fileparts only considers '.in' to be the extension, not '.qmu.in'
    6868    ext='.qmu.in';
    6969end
    70 filei2=fullfile(pathstr,[name ext versn]);
     70filei2=fullfile(pathstr,[name ext]);
    7171
    7272display(sprintf('Opening Dakota input file ''%s''.',filei2));
    7373fidi=fopen(sprintf('%s',filei2),'w');
Note: See TracBrowser for help on using the repository browser.