How to emtpy part of a matrix?

1 view (last 30 days)
Terek Li
Terek Li on 17 Oct 2016
Commented: Terek Li on 17 Oct 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!

Accepted Answer

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

More Answers (0)

Categories

Find more on Get Started with MATLAB in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!