How to select a specific cell in UITable?
15 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
piston_pim_offset
il 4 Dic 2023
Commentato: piston_pim_offset
il 5 Dic 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 Commenti
Risposta accettata
Taylor
il 4 Dic 2023
[rows, ~] = find(value == UITable.Data)
UITable.Data(r,:)
7 Commenti
Walter Roberson
il 5 Dic 2023
Once you have done
uit = app.UITable.Data;
then what shows up for
uit.Properties.VariableNames
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Develop Apps Using App Designer in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!