How do I delete a row from a matrix?

1 view (last 30 days)
I have got a matrix with in the 3th column the number 1 or 0. Now I want to delete a row from a matrix when it has got a 0 in the 3th column, so the matrix will only have the number 1 in the 3th column. Can someone help me with this?

Accepted Answer

Star Strider
Star Strider on 2 Jul 2017
If ‘M’ os your matrix, this works:
M = M(M(:,3)==1, :)

More Answers (0)

Categories

Find more on Creating and Concatenating Matrices 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!