easiest way to get structure to excel
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Hi,
I have a structure "A" that I want to export to excel for further use. "A" has the data burried a little bit in it. The best I can describe it as is when I open up "A" it looks like the following,
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/161131/image.png)
When I open the 1x1 struct, there is a 1x42 double matrix (for all 4 of those) titled "results".
I want to get those matricies to excel. Is there an easy way get those matricies to Excel? Even if it is a 2 step process.
Thanks.
2 commentaires
Naveen Baskaran
le 18 Juil 2016
Modifié(e) : Naveen Baskaran
le 18 Juil 2016
Did you finally get the answer? It would be really useful if you share
Image Analyst
le 18 Juil 2016
Well, he never Accepted one, but I still claim my answer would have worked. Naveen, you're welcome to go ahead and try it yourself.
Réponses (2)
Azzi Abdelmalek
le 17 Avr 2014
From your struct variable, you can create one 42x4 array A, then use xlswrite to export your data to an Excell file
xlswrite('file.xlsx',A)
3 commentaires
Azzi Abdelmalek
le 17 Avr 2014
A is your data, you have to post what A looks like, or give an example
Voir également
Catégories
En savoir plus sur Logical 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!