export from matlab to excel
8 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
sir help me about the commad how can i export my result in to the excel file.
0 Kommentare
Antworten (3)
stozaki
am 1 Feb. 2020
Bearbeitet: stozaki
am 1 Feb. 2020
You can use writematrix or xlswrite.
Please see following URL.
R2019a or later : writematrix
example code
M = magic(5)
writematrix(M,'M.xlsx','Sheet',2,'Range','A3:E8')
R2018b or earlier : xlswrite
exanple code
filename = 'testdata.xlsx';
A = [12.7 5.02 -98 63.9 0 -.2 56];
xlswrite(filename,A)
Chaudhary P Patel
am 1 Feb. 2020
7 Kommentare
stozaki
am 1 Feb. 2020
Bearbeitet: stozaki
am 1 Feb. 2020
I ran the same script on the following versions, but no problem occurred. And I can't reproduce the warninig.
- R2015a
- R2018a
- R2019b
Workaround: Open the .csv in Microsoft Excel. And SaveAs .xlsx.
If possible, can you reinstall R2018a and try it out?
Image Analyst
am 1 Feb. 2020
Are you 100% sure you have Excel installed? Perhaps that might cause a problem.
If you don't have Excel on that computer, use csvwrite() to write a CSV file, which can be opened by WordPad.
Why are you not upgrading to R2019b, where you can get writecell()? It's much, much faster in my experience than xlswrite().
Siehe auch
Kategorien
Mehr zu Spreadsheets finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!