Loading data into matlab gui from excel
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Radoslav Vandzura
el 30 de Sept. de 2015
Comentada: Radoslav Vandzura
el 3 de Oct. de 2015
Hello,
can you advise me how can I load data into gui into spreadsheet format?
Thank you for your answer.
0 comentarios
Respuesta aceptada
Image Analyst
el 30 de Sept. de 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 comentarios
Image Analyst
el 30 de Sept. de 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.
Más respuestas (0)
Ver también
Categorías
Más información sobre Spreadsheets en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!