We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7994491 commit febc3e5Copy full SHA for febc3e5
+stdlib/strempty.m
@@ -7,6 +7,8 @@
7
y = true;
8
elseif ischar(s)
9
y = isempty(s);
10
+elseif iscell(s)
11
+ y = strlength(s) == 0;
12
elseif isstring(s)
13
y = (strlength(s) == 0) | ismissing(s);
14
end
0 commit comments