Changeset 714 for trunk/src/fullfile_uvmat.m
- Timestamp:
- Feb 22, 2014, 5:11:04 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/fullfile_uvmat.m
r589 r714 37 37 function filename=fullfile_uvmat(RootPath,SubDir,RootFile,FileExt,NomType,i1,i2,j1,j2) 38 38 39 %% display help and test function in the absence of input ar ument39 %% display help and test function in the absence of input argument 40 40 if ~exist('RootPath','var') 41 41 help fullfile_uvmat; … … 115 115 end 116 116 end 117 % if ~isempty(i2_str)||~isempty(j2_str) 118 filename=fullfile(RootPath,SubDir,RootFile); 119 % else 120 % filename=fullfile(RootPath,RootFile); 121 % end 117 filename=fullfile(RootPath,SubDir,RootFile); 122 118 filename=[filename sep1 i1_str sep2 i2_str sep3 j1_str sep4 j2_str]; 123 119 filename=[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.