indices of all non zeros rows

55 views (last 30 days)
Azza Ahmed
Azza Ahmed on 31 May 2012
Hi,
I have a large text file and I am trying to find the indices of the rows that do not have all zeros. For example is I have this matrix:
A= 5 3 1
0 0 0
5 7 9
0 0 0
4 0 0
0 0 0
2 0 0
1 0 1
1 0 0
To find the indices of rows with all zeros is by: find(all(A==0,2)) Which gives me this answer:2,4,6 Now, if someone can tell me how can I find the indices of the other rows which have values? e.g. for rows 1,3,5,7,8 and 9? Can someone please help me with a small code?
Best wishes
AA
[Edited to format array. -- the cyclist]
  1 Comment
Honglei Chen
Honglei Chen on 31 May 2012
Your example shows a single vector, not a matrix. Could you format it correctly?

Sign in to comment.

Accepted Answer

the cyclist
the cyclist on 31 May 2012
find(~all(A==0,2))
  4 Comments
Oleg Komarov
Oleg Komarov on 3 Jun 2012
idx = any(A,2)
A(idx,:)
Azza Ahmed
Azza Ahmed on 4 Jun 2012
That's exactly what I am looking for. Many thanks Oleg!
AA

Sign in to comment.

More Answers (0)

Categories

Find more on Entering Commands 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!