Info
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
URGENT....!!!! Error Using xlswrite R2012a Ubuntu 12.04
조회 수: 1 (최근 30일)
이전 댓글 표시
I have been using xlswrite function since years in R2011a Matlab version in windows.
Now my work has shifted to ubuntu 12.04 and I downloaded latest MAtlab version R2012a.
xlswrite function is not working. It shows following error:
"" Error using xlswrite (line 188) An error occurred on data export in CSV format.
Caused by:
Error using dlmwrite (line 118) The input cell array cannot be converted to a matrix. ""
I don't know why the error is showing csv or dlmwrite related errors while I am working with excel sheets.
댓글 수: 1
답변 (1개)
Friedrich
2013년 5월 22일
편집: Friedrich
2013년 5월 22일
Hi,
the doc for xlswrite cleary states:
If your system does not have Excel for Windows, or if the COM server (part of the typical installation of Excel) is unavailable, then the xlswrite function:
Writes array A to a text file in comma-separated value (CSV) format.
Since you are using Linux you don't have Excel => MATLAB tries writing a CSV file using the dlmread command, which fails because the cell data you try to write cant be converted into a matrix.
댓글 수: 1
이 질문은 마감되었습니다.
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!