How to emtpy part of a matrix?

1 visualizzazione (ultimi 30 giorni)
Terek Li
Terek Li il 17 Ott 2016
Commentato: Terek Li il 17 Ott 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!

Risposta accettata

Andrei Bobrov
Andrei Bobrov il 17 Ott 2016
a = [1 2; 3 4; 5 6; 7 8];
a(2:3,1) = nan;

Più risposte (0)

Categorie

Scopri di più su Creating and Concatenating Matrices in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by