Index table with cell array
10 次查看(过去 30 天)
显示 更早的评论
I have a table in which one of the columns is a cell array of text data, and a cell array C that contains a subset of this text. Is there a way to extract from the table only the rows with the text in C?
0 个评论
采纳的回答
Stephen23
2021-11-19
Where T is your table and C is your cell array:
idx = ismember(T.NameOfVariable, C)
out = T(idx,:)
0 个评论
更多回答(1 个)
Matt J
2021-11-19
Yes, you can use ismember(...,'rows') to find the indices of the rows.
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Data Type Identification 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!