How can I export .mat file to .xls file?
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
How can I export .mat file to .xls file? I am using xlswrite('filename.xls') but not working. I have 50x50 deta. Kindly help me.
3 Commenti
Infinite_king
il 5 Ago 2024
You have to pass the matrix as input to 'xlswrite' function. For example - xlswrite(filename,matrix_name).
Risposte (1)
Cris LaPierre
il 5 Ago 2024
Modificato: Cris LaPierre
il 5 Ago 2024
I'd recommend using writematrix (homogenous data) or writetable (for table data type) after first loading the mat file variable to the MATLAB workspace (see load).
1 Commento
Star Strider
il 5 Ago 2024
Vedere anche
Categorie
Scopri di più su Spreadsheets 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!