With regards to tables in matlab gui
Show older comments
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 :)
Answers (1)
Matt J
on 2 Oct 2012
0 votes
data = get(tablehandle,'Data');
data(4,:)=[];
Categories
Find more on Develop Apps Using App Designer 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!