How to select cells in a table with values in a given range?
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Elissa
am 29 Mär. 2018
Kommentiert: Elissa
am 29 Mär. 2018
E.g. I want to select every cell from a column whose content is a number in the range 1:2:17.
3 Kommentare
Akzeptierte Antwort
Peter Perkins
am 29 Mär. 2018
Hard to say what you are really asking, but in MATLAB ...
t = readtable(example.xls')
t2 = t(ismember(t.condition,1:2:17),:)
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Logical finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!