MATLAB: How to check if any row has 0

rows

If I have matrix A=
0 0 0 5
1 1 4 3
1 3 4 5
2 0 0 5
I need to find that rows which has 0.
A result should show rows 1 and 4, which there are some zeros.
Could anyone help me?!

Best Answer

>> idx = any(A==0,2) % logical index
idx =
1
0
0
1
>> find(idx) % subscript index
ans =
1
4
Related Question