Delete specific rows from a matrix
Mostrar comentarios más antiguos
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
Respuesta aceptada
Más respuestas (1)
Honglei Chen
el 18 de Ag. de 2014
Editada: Honglei Chen
el 18 de Ag. de 2014
A(any(A==1,2),:) = []
Categorías
Más información sobre Creating and Concatenating Matrices en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!