Extracting values from table/ matrices

1 回表示 (過去 30 日間)
Isaac Hassen
Isaac Hassen 2020 年 6 月 19 日
コメント済み: Isaac Hassen 2020 年 6 月 19 日
I have a table with three columns (a,b,c) and hundreds of rows. How can I extract all the values of b and c when a=x?
  2 件のコメント
Turlough Hughes
Turlough Hughes 2020 年 6 月 19 日
So you have a table with T.a, T.b and T.c?
Isaac Hassen
Isaac Hassen 2020 年 6 月 19 日
Yes, I have a table let say
a b c
1 1 1
1 5 50
1 10 11
2 4 49
3 67 100
when a=1
b c
1 1
5 50
10 11

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

採用された回答

madhan ravi
madhan ravi 2020 年 6 月 19 日
TablE(TablE.a == x, 2:3) % x is a numeric scalar , use strcmp(...) if it’s a string or a char

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeCharacters and Strings についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by