Indexing by using column names
23 ビュー (過去 30 日間)
古いコメントを表示
採用された回答
Chunru
2021 年 9 月 13 日
A = zeros(3,1); B=rand(3,1); C=ones(3,1);
T = table(A, B, C)
VarNames = {'A', 'C'};
col_index = ismember(T.Properties.VariableNames, VarNames)
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Matrices and Arrays についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!