Filter löschen
Filter löschen

How to select a specific cell in UITable?

13 Ansichten (letzte 30 Tage)
piston_pim_offset
piston_pim_offset am 4 Dez. 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!

Akzeptierte Antwort

Taylor
Taylor am 4 Dez. 2023
[rows, ~] = find(value == UITable.Data)
UITable.Data(r,:)
  7 Kommentare
Walter Roberson
Walter Roberson am 5 Dez. 2023
Once you have done
uit = app.UITable.Data;
then what shows up for
uit.Properties.VariableNames
piston_pim_offset
piston_pim_offset am 5 Dez. 2023
I finally made it work by combining your answers @Taylor and @Walter Roberson Thanks a lot for your help!

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Kategorien

Mehr zu Migrate GUIDE Apps finden Sie in Help Center und File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by