Effacer les filtres
Effacer les filtres

Search specific numbers in column

1 vue (au cours des 30 derniers jours)
Lucas MacClellan
Lucas MacClellan le 27 Nov 2017
Hello everybody,
I have a Matrix of different measurements and in the 6th column it shows me erorrs. Every value in this column except of 0 shows me that the measurements are wrong. How can I clear out the lines with the errors?
Thanks
Lucas
  3 commentaires
Lucas MacClellan
Lucas MacClellan le 27 Nov 2017
Hi Adam
Sorry maybe not good explained. The title of the column is "error". It shows me a lot of 0s which are showing me that the measurements of the lines are fine. Sometimes there comes a 1 which is saying to me, that this line is not useful.
Adam
Adam le 27 Nov 2017
Ah, ok, yes, that makes sense. The original explanation is perfectly good enough now, I just got off on the wrong track with my interpretation of 'error'!

Connectez-vous pour commenter.

Réponse acceptée

Adam
Adam le 27 Nov 2017
badRowIdx = find( results( :,6 ) == 1 );
results( badRowIdx, : ) = [];
should remove these lines.
  1 commentaire
Lucas MacClellan
Lucas MacClellan le 27 Nov 2017
Thank you! Thats what I wanted

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Logical dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by