Loading data into matlab gui from excel

3 views (last 30 days)
Hello,
can you advise me how can I load data into gui into spreadsheet format?
Thank you for your answer.

Accepted Answer

Image Analyst
Image Analyst on 30 Sep 2015
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 Comments
Image Analyst
Image Analyst on 30 Sep 2015
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.
Radoslav Vandzura
Radoslav Vandzura on 3 Oct 2015
Could you advise me with my problem with loading string data.....when I want to load string data into uitable....in these cells are value 'NaN'. How can I resolve it?:) Thank you very much for your answer...

Sign in to comment.

More Answers (0)

Categories

Find more on Environment and Settings in Help Center and File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!