Path: news.mathworks.com!not-for-mail
From: "Ashish Uthama" <first.last@mathworks.com>
Newsgroups: comp.soft-sys.matlab
Subject: Re: Problems with export function
Date: Mon, 27 Oct 2008 09:04:20 -0400
Organization: TMW
Lines: 26
Message-ID: <op.ujoo9i1qa5ziv5@uthamaa.dhcp.mathworks.com>
References: <278bed73-75f8-4147-a8e8-9f2039c2b3e8@n33g2000pri.googlegroups.com>
NNTP-Posting-Host: uthamaa.dhcp.mathworks.com
Mime-Version: 1.0
Content-Type: text/plain; format=flowed; delsp=yes; charset=iso-8859-15
Content-Transfer-Encoding: 7bit
X-Trace: fred.mathworks.com 1225112661 1360 172.31.57.126 (27 Oct 2008 13:04:21 GMT)
X-Complaints-To: news@mathworks.com
NNTP-Posting-Date: Mon, 27 Oct 2008 13:04:21 +0000 (UTC)
User-Agent: Opera Mail/9.60 (Win32)
Xref: news.mathworks.com comp.soft-sys.matlab:497414


Try
  xlswrite('sample.xls', xval')
to get around the 256 columns issue.

Or you could break the data into segments lesses than 256.

As "Fangjun Jiang" <f@j.com> mentioned, if you elaborate on why you need  
to do this, someone might suggest alternatives which would get the same  
work done.

On Mon, 27 Oct 2008 08:18:58 -0400, <magic_ggg@hotmail.com> wrote:

> Hello,
>
> I want to export the data as xls file. But when I do so, an error has
> occured. Here is the command I typed:
>
> [phi,psi,xval] = wavefun('Haar', 8);
> xlswrite('sample.xls', xval)
>
> It said that I cannot save the data because the excel does not support
> more than 256 rows and 65536 columns.. what should I do?
>
> I am so frustrated because this is the first step of my project.
>