Changeset 11630


Ignore:
Timestamp:
03/05/12 16:21:18 (13 years ago)
Author:
schlegel
Message:

matlab no longer allows fullfile version argument

File:
1 edited

Legend:

Unmodified
Added
Removed
  • issm/trunk-jpl/src/m/qmu/dakota_in_write.m

    r5486 r11630  
    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));
Note: See TracChangeset for help on using the changeset viewer.