xlswrite and excel 2010

조회 수: 5 (최근 30일)
M M
M M 2011년 5월 20일
For some reason the function xlswrite does not return me an excel spread sheet but a cvs. I am wondering if it is because I am using excel 2010 since even this simple command:
for i = 1:10
A=i;
xlswrite('foo.xls',A,'Sheet1',['A' num2str(i)]);
end
which should give me an excel.xls file with a column from 1 to 10 in areas A from 1 to 10. What I get is a foo.cvs file with the number 10 in cell A1 and this warning
Warning: Could not start Excel server for export.
XLSWRITE will attempt to write file in CSV format.
> In xlswrite at 166
In Untitled2 at 21
A .cvs file would be fine but i need to be able to manipulate where the data is placed in the spreadsheet from the MATLAB code, which it doesn't allow me to do at all even for simpler commands. If someone could let me know why this is happening and if there is anything I can do to fix it, I would really appreciate it. Thanks in advance,
  댓글 수: 1
Oleg Komarov
Oleg Komarov 2011년 5월 24일
I have no problem with your script.
Matlab R2011a Vista32 MS Office 2010

댓글을 달려면 로그인하십시오.

답변 (2개)

Razvan
Razvan 2011년 5월 22일
Try
A=[1:10]';
xlswrite('foo.xls',A,'Sheet1');

Walter Roberson
Walter Roberson 2011년 5월 24일
Either you are not using Windows or your Excel is not installed correctly (or perhaps your MATLAB is not installed correctly.)

카테고리

Help CenterFile Exchange에서 Spreadsheets에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by