Loading data into matlab gui from excel
1 次查看(过去 30 天)
显示 更早的评论
Hello,
can you advise me how can I load data into gui into spreadsheet format?
Thank you for your answer.
0 个评论
采纳的回答
Image Analyst
2015-9-30
You can use guide and put a grid ((uitable) onto the figure. Then use set() to send your data to it:
set(handles.uitable1, 'data', yourData);
6 个评论
Image Analyst
2015-9-30
You can width the columns with the column width property. You can bring in the right side of the table control using the 'Position' property to set the size.
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Spreadsheets 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!