save matlab output to excel
9 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
hi
i have some data in command window like:
n x y
1 9 7
2 2.5 3
3 45 23
.. .. ..
and i want to write them on excel file,in 3 different columns,could any body help me?
thanks in advance
0 Commenti
Risposte (1)
Azzi Abdelmalek
il 2 Set 2013
Modificato: Azzi Abdelmalek
il 2 Set 2013
If M is your matrix
M=[1 9 7;2 2.5 3;3 45 23]
xlswrite('yourfile.xls',M)
3 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!