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?

 Akzeptierte Antwort

Star Strider
Star Strider am 2 Jul. 2017

0 Stimmen

If ‘M’ os your matrix, this works:
M = M(M(:,3)==1, :)

Weitere Antworten (0)

Kategorien

Community Treasure Hunt

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

Start Hunting!

Translated by