From: George on
Hi Guys,

When I tried to use xlswrite to write a huge matrix to excel, some error message displayed. For example:

A=zeros(120,500);
xlswrite(filename, A, 1);
% filename is a certain excel file

the following error happens:

??? Error using ==> xlswrite at 236
Excel returned: Error: Object returned error code: 0x800A03EC.

Can someone tell me what's wrong? Is there any size limit on this?

Thanks in advance!
From: us on
"George " <guanjihou(a)gmail.com> wrote in message <i25f66$qpd$1(a)fred.mathworks.com>...
> Hi Guys,
>
> When I tried to use xlswrite to write a huge matrix to excel, some error message displayed. For example:
>
> A=zeros(120,500);
> xlswrite(filename, A, 1);
> % filename is a certain excel file
>
> the following error happens:
>
> ??? Error using ==> xlswrite at 236
> Excel returned: Error: Object returned error code: 0x800A03EC.
>
> Can someone tell me what's wrong? Is there any size limit on this?
>
> Thanks in advance!

a hint:
- for a tedious problem...

http://www.made4dotnet.com/Default.aspx?tabid=141&aid=15

us