Hey
I have a matrix A of 34x2 double.
I want to eliminate the rows wherein the value of both the columns is 0.

 Accepted Answer

A(all(A == 0, 2), :) = [ ]

3 Comments

it is not returning me a A as a matrix, it is getting converted to a vector.
What?
>> A = [1,2; 0,0]
A(all(A == 0, 2), :) = [ ]
A =
1 2
0 0
A =
1 2
>>
Anurag Gupta
Anurag Gupta on 19 Oct 2020
Edited: madhan ravi on 19 Oct 2020
Hello Madhan,
Extremely sorry I actually made an error earlier in the loop which lead to me not getting the right answer. Thanks a lot for the solution. It worked perfectly.
Regards,
Anurag Gupta

Sign in to comment.

More Answers (1)

A(all(A(:,1:2)==0,2),:)=[];

2 Comments

How’s this different from my answer?
I didn't refresh the web page and the time I submitted the answer, there was no anwser to this question.

Sign in to comment.

Categories

Find more on Loops and Conditional Statements in Help Center and File Exchange

Products

Community Treasure Hunt

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

Start Hunting!