How to send data from graph to table in GUI
2 views (last 30 days)
Show older comments
Muhammad Tarique
on 23 Apr 2016
Commented: Geoff Hayes
on 30 Apr 2016
I am working on ODE rk method, it is making graph in my GUI but i want to send that graph data on to my GUI table so how i can do that kindly help me
0 Comments
Accepted Answer
Geoff Hayes
on 24 Apr 2016
Muhammad - what graph data to you want to send the table? At what point will this data be sent? Please clarify the data and the mechanism that initiates the population of the uitable. If you expect this to happen when you press a button, then in the push button callback you would use the handles structure (assuming that you are using GUIDE) to access the uitable control. For example, if you have one table with its tag unchanged, then you would do something like
% get current data from table
data = get(handles.uitable1, 'Data');
% update the data array with the new data
% newRowData = ???; to be determined by your
data = [data ; newRowData];
% update the table
set(handles.uitable1,'Data', data);
4 Comments
Geoff Hayes
on 30 Apr 2016
Muhammad - please post the code that you have written so that we can get an idea of what you are attempting to do.
More Answers (0)
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!