I ran a Matlab program and produced a range
of results in workspace let say the example below
a= 1 1 3 4 5 ....
I would like to export the result to excel
file. so I use the following command
xlswrite('b03', a)
here b03 is my excel, and the error prompt
out as
??? Error using ==> xlswrite
Error: Object returned error code: 0x800A03EC
Hi all,
I have solved this problem, pls ignore this question
Felix
Felix wrote:
>
>
> Hi,
>
> I ran a Matlab program and produced a range
> of results in workspace let say the example below
> a= 1 1 3 4 5 ....
>
> I would like to export the result to excel
> file. so I use the following command
> xlswrite('b03', a)
> here b03 is my excel, and the error prompt
> out as
> ??? Error using ==> xlswrite
> Error: Object returned error code: 0x800A03EC
>
> Can help
>
> Felix
"Cristina " <ita_sb69@hotmail.com> wrote in message
<fn1juu$rd0$1@fred.mathworks.com>...
> Hi
>
> Could you tell me how did you solve the problem about xls
write:
>
> Error 0x800A03EC
>
>
> Thank y very much
i have a similar problem and here's how I solved it. In my
case I was exporting cell-arrays to Excel. If you have any
nested-cell-arrays [to test run:
any(cellfun(@(x)(iscell(x)),Excel_output)) ] or if you have
any empty cell-arrays [to test run:
any(cellfun('isempty',Excel_output))]. My solution was to
concatenate nested-cells into one cell and to fill empty
cells with a space-character ' '.
NOTICE: Any content you submit to MATLAB Central, including personal information, is not subject to the protections which may be afforded information collected under other sections of The MathWorks, Inc. Web site. You are entirely responsible for
all content that you upload, post, e-mail, transmit or otherwise make available via MATLAB Central. The MathWorks does not control the content posted by visitors to MATLAB Central and, does not guarantee the accuracy, integrity, or quality of such content.
Under no circumstances will The MathWorks be liable in any way for any content not authored by The MathWorks, or any loss or damage of any kind incurred as a result of the use of any content posted, e-mailed, transmitted or otherwise made available
via MATLAB Central.
Read the complete Disclaimer prior to use.