Search for a value in a table and get the corresponding value from the 2nd column
4 ビュー (過去 30 日間)
古いコメントを表示
Hi guys,
I have a table of values and would like to search for a value and then get the corresponding value from the 2nd column. Can anyone help me with this problem?
Thanks a lot!
0 件のコメント
採用された回答
Star Strider
2023 年 4 月 2 日
If you are searching for an exact match, try something like this —
Col1 = linspace(0, 10, 21).';
Col2 = randn(numel(Col1),1);
T1 = table(Col1,Col2)
Val = 3;
Result = T1{Col1==Val,:}
Much depends on the table and what you want to do. This is simply an illustration of the most obvious approach.
.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Structures についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!