Changeset 11642


Ignore:
Timestamp:
03/06/12 09:54:51 (13 years ago)
Author:
schlegel
Message:

remove version from file info calls, not supported by new matlab

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  
    8080if strcmpi(params.analysis_driver,'matlab') && ...
    8181   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']);
    8484end
    8585
  • issm/trunk-jpl/src/m/qmu/dakota_in_write.m

    r11630 r11642  
    234234    param_write(fidi,'\t  ','evaluation_static_scheduling','','\n',params);
    235235    if ~isempty(params.analysis_components)
    236         [pathstr,name,ext,versn] = fileparts(params.analysis_components);
     236        [pathstr,name,ext] = fileparts(params.analysis_components);
    237237        if isempty(ext)
    238238            ext='.m';
    239239        end
    240         params.analysis_components=fullfile(pathstr,[name ext versn]);
     240        params.analysis_components=fullfile(pathstr,[name ext]);
    241241        param_write(fidi,'\t  ','analysis_components',' = ''','''\n',params);
    242242    end
Note: See TracChangeset for help on using the changeset viewer.