ignore unused output variable

time-shift
Houtan Bastani 2019-10-09 10:02:25 +02:00
parent 71996fd077
commit 8b86f8a25b
No known key found for this signature in database
GPG Key ID: 000094FB955BE169
1 changed files with 1 additions and 1 deletions

View File

@ -152,7 +152,7 @@ end
if ~isempty(strfind(fname,filesep))
fprintf('\nIt seems you are trying to call a .mod file not located in the "Current Folder". This is not possible (the %s symbol is not allowed in the name of the .mod file).\n', filesep)
[pathtomodfile,basename,ext] = fileparts(fname);
[pathtomodfile,basename] = fileparts(fname);
if exist(pathtomodfile,'dir')
filesindirectory = dir(pathtomodfile);
filesindirectory = struct2cell(filesindirectory);