Filter löschen
Filter löschen

how to retrieve data from particular cell of uitable

10 Ansichten (letzte 30 Tage)
CHETHAN S
CHETHAN S am 25 Jan. 2016
Kommentiert: WAIL BOUGIDA am 20 Jul. 2021
I want to retrieve(or extract) data from particular cell of uitable.
Please help me in achieving the desired result with the code.

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 25 Jan. 2016
data_cell = get(handles.uitable1, 'Data'); %get current table
desired_result = data_cell{7,19}; %get value from particular place
  2 Kommentare
CHETHAN S
CHETHAN S am 27 Jan. 2016
Thanks a lot.
You have saved me all the time. :)
WAIL BOUGIDA
WAIL BOUGIDA am 20 Jul. 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'});

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