Ignore:
Timestamp:
Feb 22, 2014, 5:11:04 PM (11 years ago)
Author:
sommeria
Message:

various improvements

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/fullfile_uvmat.m

    r589 r714  
    3737function filename=fullfile_uvmat(RootPath,SubDir,RootFile,FileExt,NomType,i1,i2,j1,j2)
    3838   
    39 %% display help and test function in the absence of input arument
     39%% display help and test function in the absence of input argument
    4040if ~exist('RootPath','var')
    4141    help fullfile_uvmat;
     
    115115    end
    116116end
    117 % if ~isempty(i2_str)||~isempty(j2_str)
    118     filename=fullfile(RootPath,SubDir,RootFile);
    119 % else
    120 %     filename=fullfile(RootPath,RootFile);
    121 % end
     117filename=fullfile(RootPath,SubDir,RootFile);
    122118filename=[filename sep1 i1_str sep2 i2_str sep3 j1_str sep4 j2_str];
    123119filename=[regexprep(filename,'_$','') FileExt];%suppress possible '_' at the end of the string and add the extension
Note: See TracChangeset for help on using the changeset viewer.