How to emtpy part of a matrix?

1 visualización (últimos 30 días)
Terek Li
Terek Li el 17 de Oct. de 2016
Comentada: Terek Li el 17 de Oct. de 2016
If I have a matrix like this :
a = [1 2; 3 4; 5 6; 7 8]
is there a quick way to remove '3' and '4' from the matrix so it looks like :
a = [1 2; [] 4; [] 6; 7 8]?
I only want to remove value in the 1st column starting on the 2nd row and ending at the 2nd last row.
THANKS!

Respuesta aceptada

Andrei Bobrov
Andrei Bobrov el 17 de Oct. de 2016
a = [1 2; 3 4; 5 6; 7 8];
a(2:3,1) = nan;

Más respuestas (0)

Categorías

Más información sobre Get Started with MATLAB 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!

Translated by