How to remove zero sum row from matrix
9 views (last 30 days)
Show older comments
Vishal Sharma
on 24 Jan 2017
Answered: Andrei Bobrov
on 24 Jan 2017
A=[1 2 3 4 5 6;
0 0 1 1 0 1;
0 0 1 0 1 0]
Sum of second and third row if equal to zero, then in new matrix that column is to be excluded. So, the result shall be
A=[3 4 5 6;
1 1 0 1;
1 0 1 0]
0 Comments
Accepted Answer
the cyclist
on 24 Jan 2017
Edited: the cyclist
on 24 Jan 2017
colToRemove = sum(A(2:end,:))==0;
A(:,colToRemove) = [];
1 Comment
More Answers (2)
See Also
Categories
Find more on Creating and Concatenating Matrices 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!