Effacer les filtres
Effacer les filtres

Delete zero rows from a table

32 vues (au cours des 30 derniers jours)
Jian Teng
Jian Teng le 25 Juin 2018
Commenté : Paolo le 26 Juin 2018
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!

Réponse acceptée

Paolo
Paolo le 25 Juin 2018
Modifié(e) : Paolo le 26 Juin 2018
For a table named t:
t(~t.speed,:) = []
  3 commentaires
Jian Teng
Jian Teng le 26 Juin 2018
what is ~ mean?
Paolo
Paolo le 26 Juin 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).

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Structures dans Help Center et File Exchange

Produits


Version

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by