Help with GUI Table

1 view (last 30 days)
Rodrigo Trigona
Rodrigo Trigona on 28 Sep 2012
What function can I use to read specific cells on a table in GUI???. The user will write numbers and i need to read specif cells, like A1:A4 and A6:A7

Accepted Answer

Matt Fig
Matt Fig on 28 Sep 2012
This creates a table. Once it is created, edit some of the cells until you are content.
T = uitable('data',magic(3),'columnedit',true(1,3));
Now, to get the data, do:
D = get(T,'data');
If you only need some of the data, index into D. For example, to get the entire second row:
D2 = D(2,:);
or to get the entire second column:
D2 = D(:,2)
  2 Comments
Rodrigo Trigona
Rodrigo Trigona on 28 Sep 2012
Can I get specific cells in a variable, like D2 = D(2,10:13). It gets the second row and the cells 10 to 13
Matt Fig
Matt Fig on 28 Sep 2012
Sure, why not?

Sign in to comment.

More Answers (1)

choma community
choma community on 5 Oct 2012
i dont know build gui from this my work...please help me to do me work please download this link below and correctly my work...thanks before

Categories

Find more on Tables 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!