Plotting Data from a matlab gui Table ?
4 次查看(过去 30 天)
显示 更早的评论
How can i plot two columns of a table in matlab gui together in an axes ?
0 个评论
采纳的回答
Geoff Hayes
2017-4-16
Moustafa - if we assume that there are only two columns in your table, then you could do something like
tableData = get(tableH,'Data');
plot(axesH, tableData(:,1), tableData(:,2));
In the above, I'm assuming that tableH is the handle to your table and that axesH is the handle to the axes. (And that tableData is not a cell array.)
4 个评论
Kev' junior
2021-6-26
Hi sir. i am sorry to bother you but i have tried to follow your method and i get an error:
Undefined function or variable 'tableH'. Can you please help me?
Geoff Hayes
2021-6-28
Kev - you would need to show all of the code that you have written. tableH is a variable specific to this problem and is used as an example only and so will not (according to the error) be a variable that you are using.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Develop Apps Using App Designer 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!