how to retrieve data from particular cell of uitable

21 views (last 30 days)
I want to retrieve(or extract) data from particular cell of uitable.
Please help me in achieving the desired result with the code.

Accepted Answer

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

Sign in to comment.

More Answers (0)

Categories

Find more on Migrate GUIDE Apps in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!