Loading data into matlab gui from excel
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Radoslav Vandzura
il 30 Set 2015
Commentato: Radoslav Vandzura
il 3 Ott 2015
Hello,
can you advise me how can I load data into gui into spreadsheet format?
Thank you for your answer.
0 Commenti
Risposta accettata
Image Analyst
il 30 Set 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 Commenti
Image Analyst
il 30 Set 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.
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Migrate GUIDE Apps in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!