How to select a specific cell in UITable?
10 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
piston_pim_offset
le 4 Déc 2023
Commenté : piston_pim_offset
le 5 Déc 2023
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 commentaires
Réponse acceptée
Taylor
le 4 Déc 2023
[rows, ~] = find(value == UITable.Data)
UITable.Data(r,:)
7 commentaires
Walter Roberson
le 5 Déc 2023
Once you have done
uit = app.UITable.Data;
then what shows up for
uit.Properties.VariableNames
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Develop Apps Using App Designer dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!