Delete specific rows from a matrix
Mostra commenti meno recenti
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
Risposta accettata
Più risposte (1)
Honglei Chen
il 18 Ago 2014
Modificato: Honglei Chen
il 18 Ago 2014
A(any(A==1,2),:) = []
Categorie
Scopri di più su Creating and Concatenating Matrices in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!