Loading data into matlab gui from excel
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Radoslav Vandzura
le 30 Sep 2015
Commenté : Radoslav Vandzura
le 3 Oct 2015
Hello,
can you advise me how can I load data into gui into spreadsheet format?
Thank you for your answer.
0 commentaires
Réponse acceptée
Image Analyst
le 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 commentaires
Image Analyst
le 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.
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Spreadsheets dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!