Azzera filtri
Azzera filtri

how to retrieve data from particular cell of uitable

10 visualizzazioni (ultimi 30 giorni)
I want to retrieve(or extract) data from particular cell of uitable.
Please help me in achieving the desired result with the code.

Risposta accettata

Walter Roberson
Walter Roberson il 25 Gen 2016
data_cell = get(handles.uitable1, 'Data'); %get current table
desired_result = data_cell{7,19}; %get value from particular place
  2 Commenti
CHETHAN S
CHETHAN S il 27 Gen 2016
Thanks a lot.
You have saved me all the time. :)
WAIL BOUGIDA
WAIL BOUGIDA il 20 Lug 2021
I do have the same purpose, retrieving data from a UITable. I would like to get an array of the elements of each columns. However, I get the following error: Unable to use a value of type cell...
Here is my piece of code: Please help me out
Data = get(app.UITable, 'Data');
Xs = Data(:,{'x'});
Ys = Data(:, {'y'});
Zs = Data(:, {'Z'});

Accedi per commentare.

Più risposte (0)

Categorie

Scopri di più su Migrate GUIDE Apps 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!

Translated by