Delete specific rows from a matrix
Show older comments
Hi all,
i want to delete rows which with the values 1 in their columns, how can i do it ?
For example:
A= [7,7;2,2;1,1;3,3]
Becomes
A=[7,7;2,2;3,3]
Thank you !
P.s I've searched other posts before posting this .. couldn't find any help
Accepted Answer
More Answers (1)
Honglei Chen
on 18 Aug 2014
Edited: Honglei Chen
on 18 Aug 2014
A(any(A==1,2),:) = []
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!