How to extract a range of values from a variable table

6 ビュー (過去 30 日間)
Ishaan Chauhan
Ishaan Chauhan 2020 年 3 月 12 日
コメント済み: Ishaan Chauhan 2021 年 2 月 16 日
For example, from the 1st number to the 6th number

採用された回答

Ameer Hamza
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)
  1 件のコメント
Ishaan Chauhan
Ishaan Chauhan 2021 年 2 月 16 日
Forgot to say thank you
Thank you very much! :)

サインインしてコメントする。

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLogical についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by