MATLAB isempty function
Determine if object is empty.
isempty(A)
A |
object to evaluate |
An empty object has at least one dimension of size zero.
Returns TRUE
if x
is an empty object; otherwise, FALSE
.
P. Roebuck proebuck@mdanderson.org
isempty(1:3) # FALSE isempty(array(NA, c(2, 0, 2))) # TRUE
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.