How to extract a range of values from a variable table
6 ビュー (過去 30 日間)
古いコメントを表示
For example, from the 1st number to the 6th number
0 件のコメント
採用された回答
Ameer Hamza
2020 年 3 月 12 日
You can index into a table similar to a matrix. For example
extracted_values = myTable(:, 6:20);
convert to simple matrix
M = table2array(extracted_values)
その他の回答 (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!