Getting data from specific columns in a table

4 ビュー (過去 30 日間)
Curious Mind
Curious Mind 2018 年 8 月 21 日
コメント済み: Curious Mind 2018 年 8 月 21 日
Hello:
I have table_1 and say it has 6 columns. I would to love to have a code that will enable me to get data from a specific column(s) by using the column number or numbers.So lets say I want data from columns 2 and 3, the code should enable me to enter 2 and 3 and then it will search the table and return the data associated with the specified column(s).
Thank you guys.

採用された回答

Stephan
Stephan 2018 年 8 月 21 日
編集済み: Stephan 2018 年 8 月 21 日
You get data from a table by using the dot-notation. Therefore use the name of the column. If your columns are named 1...6 use
table_new = table_old.2
to get data from the column named '2'.
Here is an example:
A = table(['a'; 'b'; 'c'],[1; 2; 3],'VariableNames',{'x', 'y'})
If you use:
A.y
you get an array containing all values of the column named 'y'.
Best regards
Stephan
  9 件のコメント
Stephan
Stephan 2018 年 8 月 21 日
編集済み: Stephan 2018 年 8 月 21 日
So you use:
B = Table_A(:,2:3)
to get what you want.
Curious Mind
Curious Mind 2018 年 8 月 21 日
Thank you very much. It works

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

その他の回答 (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