Info
Questa domanda è chiusa. Riaprila per modificarla o per rispondere.
URGENT....!!!! Error Using xlswrite R2012a Ubuntu 12.04
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
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 Commento
Risposte (1)
Friedrich
il 22 Mag 2013
Modificato: Friedrich
il 22 Mag 2013
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 Commento
Questa domanda è chiusa.
Vedere anche
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!