removing zeros from matrix
Afficher commentaires plus anciens
Hi,
I've constructed a code looking at vertical force data and have it set to put each stance phase into it's own column. The one issue I'm having is that I have all these extra zeros. Any way to remove them so I don't have to export all of these zeros with the data I care about? Have tried "remove," "nonzeros," and "~=0" functions but with no luck.
Thanks in advance
1 commentaire
Jan
le 19 Déc 2021
Post the code you have tried and explain "no luck" with details. Then the readers can mention, what the problem is.
Réponses (1)
Jan
le 19 Déc 2021
x(x==0) = [];
% Or:
x = x(x~=0);
Where do the zeros come from? Instead of removing them it might be easier to avoid to create them before.
1 commentaire
Perri Johnson
le 20 Déc 2021
Catégories
En savoir plus sur Pulse and Transition Metrics dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!