Matlab&Excell

Hello i want to save one or more matrix from matlab to excel. i've tried the command:
xlswrite('Data.xls', Hscorr)
where Hscorr is the matrix that i want to save but i've got this error:
Warning: Could not start Excel server for export. XLSWRITE will attempt to write file in CSV format.
why?

Respuestas (1)

Fangjun Jiang
Fangjun Jiang el 17 de Nov. de 2011

1 voto

xlswrite() requires the Excel COM server. It might be either you don't have MS Excel installed, or you are using a non-PC computer.

3 comentarios

Salvatore Turino
Salvatore Turino el 17 de Nov. de 2011
uhm i'm on Mac-laptop. is it possibile to save it on txt then?
Fangjun Jiang
Fangjun Jiang el 17 de Nov. de 2011
Yes. save() with the -ASCII option. Or, dlmwrite(), csvwrite() or fprintf().
Walter Roberson
Walter Roberson el 17 de Nov. de 2011
And note that it is just a warning: like the warning says, it will write it as text as a CSV file. There are some restrictions, though: you can only write a pure numeric array doing that.

Iniciar sesión para comentar.

Preguntada:

el 17 de Nov. de 2011

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by