Delete zero rows from a table

I have a table in MatLAB. The table has two column, one is called direction, another one is call speed. There are many zeros in the speed column. I would like to delete the row that has 0 in speed. Could anyone help me with that? Thanks!

 Respuesta aceptada

Paolo
Paolo el 25 de Jun. de 2018
Editada: Paolo el 26 de Jun. de 2018
For a table named t:
t(~t.speed,:) = []

3 comentarios

Jian Teng
Jian Teng el 26 de Jun. de 2018
Thank you so much!
Jian Teng
Jian Teng el 26 de Jun. de 2018
what is ~ mean?
Paolo
Paolo el 26 de Jun. de 2018
Tilde is the logical NOT operator. ~t.speed is used to find all the rows where t.speed is equal to zero. You can find more information on logical operators in the documentation (link).

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Productos

Versión

R2018a

Etiquetas

Preguntada:

el 25 de Jun. de 2018

Comentada:

el 26 de Jun. de 2018

Community Treasure Hunt

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

Start Hunting!

Translated by