How to select a specific cell in UITable?
17 ビュー (過去 30 日間)
古いコメントを表示
There is an input and I want to get the other values in the row where this input is equal to one of the values in the first column of the UITable.
I think l need something like:
idx = UITable.ColumnName.SerialNumber==3
Thanks for your help!
0 件のコメント
採用された回答
Taylor
2023 年 12 月 4 日
[rows, ~] = find(value == UITable.Data)
UITable.Data(r,:)
7 件のコメント
Walter Roberson
2023 年 12 月 5 日
Once you have done
uit = app.UITable.Data;
then what shows up for
uit.Properties.VariableNames
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Develop Apps Using App Designer についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!