How do I convert data stored in a variable as a matrix to an excel file?
10 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
I would like to store data generated by MATLAB in a microsoft excel spreadsheet. What is the most efficient way of doing this? I do not want to do them individually by hand.
Thanks
0 Commenti
Risposta accettata
Image Analyst
il 1 Dic 2014
Just call xlswrite
xlswrite(filename, yourMatrix, 'My Results', 'A1');
0 Commenti
Più risposte (1)
Matthew Schneck
il 1 Dic 2014
There is a built-in function that can do this for you called 'xlswrite'. It is much better than transcribing numbers by hand.
The syntax for this function is xlswrite(filename, variable_name, sheet).
0 Commenti
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!