how to i check if matrix cotaining logical 1
Show older comments
I got B and i want to check if B cotains at least one '1' display super
if all zeros display not good
How do i do it
A = [1 0 0];
B = logical(A)
if B == 1;
disp('super')
else
disp('not good')
end
Accepted Answer
More Answers (1)
Paul Hoffrichter
on 3 Dec 2020
0 votes
One simple way:
if sum(B) > 0
Categories
Find more on RoadRunner Fundamentals in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!