How to specify column names by writematrix function in Appdesigner?
8 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
piston_pim_offset
le 1 Avr 2024
Commenté : piston_pim_offset
le 22 Avr 2024
I'm working in app designer. I store 4 columns of data to an excell file.
I have already specified the column names in excell and am using "VariableNamingRule", "preserve". But the column names are transformed into Var1, Var2 etc. or all column names are disappeared.
How do l solve this problem?
Thanks in advance!
Réponse acceptée
Tiffany
le 1 Avr 2024
Modifié(e) : Tiffany
le 1 Avr 2024
A potential workaround would be to first use array2table to convert the array into a table and set the column labels by using the property 'VariableNames'. Then you can use writetable to export the data to an excel file.
writetable(array2table(insert_data, 'VariableNames', insert_col_labels), 'filename.xls')
3 commentaires
Tiffany
le 2 Avr 2024
The following video details how to save data from MATLAB to Excel using a template: https://www.mathworks.com/videos/saving-data-from-matlab-to-excel-using-a-template-118948.html. I hope this helps!
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!