change .mat to CSV
2 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Roozbeh Yousefnejad
le 7 Juin 2018
Commenté : Roozbeh Yousefnejad
le 7 Juin 2018
Hi all, I have .mat file which has 11 different parameters in it, say par1, par2,par3, etc. Is there any way to save this "mat" file as a CSV file? I want to have the name of the parameters (par1,par2, ...) on the first row of the CSV as well.
Thanks
2 commentaires
Paolo
le 7 Juin 2018
What are the contents of par1, par2, par3? Can you add your .mat file to your question?
Réponse acceptée
Onur Kapucu
le 7 Juin 2018
Modifié(e) : Onur Kapucu
le 7 Juin 2018
This should do it
EL_struct = open('el.mat');
EL_transposed = structfun(@transpose,EL_struct,'UniformOutput',false);
data = struct2table(EL_transposed);
writetable(data);
3 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Data Import and Analysis 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!