Skip to content
Snippets Groups Projects
Commit bb7c2450 authored by Stéphane Adjemian's avatar Stéphane Adjemian Committed by GitHub
Browse files

Merge pull request #1542 from JohannesPfeifer/isstring

Make isfile.m command work with Matlab versions before 9.1
parents 5cfcadf9 fa26ab10
Branches
Tags
No related merge requests found
......@@ -49,7 +49,7 @@ cellofstringflag = false;
n = 1;
a = false;
if ~isoctave() && isstring(b) && length(b)>1 && isvector(b)
if ~isoctave() && ~matlab_ver_less_than('9.1') && isstring(b) && length(b)>1 && isvector(b)
n = length(b);
stringarrayflag = true;
a = false(size(b));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment