deleting rows from matrix and saving as a new matrix

3 visualizaciones (últimos 30 días)
Elina Park
Elina Park el 28 de Nov. de 2018
Respondida: Star Strider el 28 de Nov. de 2018
Hello,
If I have a matrix 20 x 20, and I want to delete row 2 and 7,
I would use something like
MTX_1([2,7],:) = []
is there a way to save this new matrix as a separate array (such as MTX_2), while preserving the original MTX_1?
Thank you.

Respuestas (1)

Star Strider
Star Strider el 28 de Nov. de 2018
Probably the easiest way:
MTX_2 = MTX_1(setdiff(1:size(MTX_1,1),[2,7]),:)
This creates ‘MTX_2’ while leaving ‘MTX_1 unchanged.

Categorías

Más información sobre Creating and Concatenating Matrices en Help Center y File Exchange.

Etiquetas

Productos


Versión

R2018a

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by