Deleting specific Rows in a matrix
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
James
el 7 de Abr. de 2014
Respondida: Ondrej Budac
el 7 de Abr. de 2014
Hi,
I have a matrix "A" that is 350x1 matrix, so it is a very large matrix. This matrix has about 40 rows that I want to remove. I know these rows and they are stored in another matrix "B", which is a 40x1 matrix. How do I delete the rows that are listed in matrix "B" from matrix "A"?
0 comentarios
Respuesta aceptada
Joseph Cheng
el 7 de Abr. de 2014
you can do this
A(B)=[];
This will delete the rows from A given the numbers that are stored in B.
0 comentarios
Más respuestas (1)
Ondrej Budac
el 7 de Abr. de 2014
If your matrix B has the row indices, it suffices to write
A(B) = [];
0 comentarios
Ver también
Categorías
Más información sobre Elementary Math en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!