With regards to tables in matlab gui

My situation here is that I have a 4by3 table in GUI interface.
its column names is at follows,(Eq1 Eq2 Eq3)
and is rows names is this(aX bY cY d)
what i want to know is how can I get the datas entered by the user from the whole table except row d (aX→cY,Eq1→Eq3).
this program is like 3 equation 3 unknowns, its aim is to know the unknown using matlab operation.
you help would be appreciated, im a starter at gui interface so please bare with me. thankyou :)

3 Comments

Please explain what "table in GUI" exactly means.
the table button in gui interface.
Do you mean an UITABLE created in GUIDE?

Sign in to comment.

Answers (1)

Matt J
Matt J on 2 Oct 2012
data = get(tablehandle,'Data');
data(4,:)=[];

Categories

Find more on Develop Apps Using App Designer in Help Center and File Exchange

Asked:

on 2 Oct 2012

Community Treasure Hunt

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

Start Hunting!