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!