How to select cells in a table with values in a given range?
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
E.g. I want to select every cell from a column whose content is a number in the range 1:2:17.
3 commentaires
Réponse acceptée
Peter Perkins
le 29 Mar 2018
Hard to say what you are really asking, but in MATLAB ...
t = readtable(example.xls')
t2 = t(ismember(t.condition,1:2:17),:)
Plus de réponses (0)
Voir également
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!