How to select cells in a table with values in a given range?
3 ビュー (過去 30 日間)
古いコメントを表示
E.g. I want to select every cell from a column whose content is a number in the range 1:2:17.
3 件のコメント
採用された回答
Peter Perkins
2018 年 3 月 29 日
Hard to say what you are really asking, but in MATLAB ...
t = readtable(example.xls')
t2 = t(ismember(t.condition,1:2:17),:)
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Logical についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!