How to check if an array is empty without using any built in functions

 Accepted Answer

Use isempty
x = [];
isempty(x)
Then the answer is
ans =
logical
1

1 Comment

Hi friend,
What do you mean by saying without using any built in functions?
Even x==[], the operator == is a built-in function.
So isempty(x), isqual(x,[]), or even numel(x)==0, length(x)==0
all the above can respond to your question.

Sign in to comment.

More Answers (1)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!