How to index into a table with more than 1 variable?

4 ビュー (過去 30 日間)
MKM
MKM 2021 年 11 月 5 日
コメント済み: MKM 2021 年 11 月 5 日
Hi,
The current problem i have is trying to index into a table using more than 1 variable. I want to be able to show all rows that have "mark" and "paul" in the name column. Here is an example of what i am trying to do:
table = 20x4 (various data here col 4 = to table.name)
a = {'mark', 'paul'};
idx = table(strcmp(table.name, a), :);
I just receieve and errors that says - "Row index exceeds table dimensions."
This method works if i only use one name in the a paramater. Not sure why it wont for more than one.

採用された回答

Stephen23
Stephen23 2021 年 11 月 5 日
編集済み: Stephen23 2021 年 11 月 5 日
Where T is your table (do NOT use table as a variable name):
out = T(ismember(T.name,a),:);
  1 件のコメント
MKM
MKM 2021 年 11 月 5 日
cheers, Stephen. Why does this work and the function i used not?

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

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeStartup and Shutdown についてさらに検索

製品


リリース

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by