<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/238227</link>
    <title>MATLAB Central Newsreader - Problems with export function</title>
    <description>Feed for thread: Problems with export function</description>
    <language>en-us</language>
    <copyright>&amp;copy;1994-2012 by MathWorks, Inc.</copyright>
    <webmaster>webmaster@mathworks.com</webmaster>
    <generator>MATLAB Central Newsreader</generator>
    <docs>http://blogs.law.harvard.edu/tech/rss</docs>
    <ttl>60</ttl>
    <image>
      <title>MathWorks</title>
      <url>http://www.mathworks.com/images/membrane_icon.gif</url>
    </image>
    <item>
      <pubDate>Mon, 27 Oct 2008 12:18:58 -0400</pubDate>
      <title>Problems with export function</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/238227#607482</link>
      <author>magic_ggg@hotmail.com</author>
      <description>Hello,&lt;br&gt;
&lt;br&gt;
I want to export the data as xls file. But when I do so, an error has&lt;br&gt;
occured. Here is the command I typed:&lt;br&gt;
&lt;br&gt;
[phi,psi,xval] = wavefun('Haar', 8);&lt;br&gt;
xlswrite('sample.xls', xval)&lt;br&gt;
&lt;br&gt;
It said that I cannot save the data because the excel does not support&lt;br&gt;
more than 256 rows and 65536 columns.. what should I do?&lt;br&gt;
&lt;br&gt;
I am so frustrated because this is the first step of my project.</description>
    </item>
    <item>
      <pubDate>Mon, 27 Oct 2008 12:28:01 -0400</pubDate>
      <title>Re: Problems with export function</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/238227#607485</link>
      <author>Fangjun Jiang</author>
      <description>That is the limitation of the Office. We can do nothing about it unless Microsoft does something. What is the reason that you want to export such a huge matrix into a spread sheet? It won't fit for human eyes. If you can explain the reason, there might be other solution for it.&lt;br&gt;
&lt;br&gt;
magic_ggg@hotmail.com wrote in message &amp;lt;278bed73-75f8-4147-a8e8-9f2039c2b3e8@n33g2000pri.googlegroups.com&amp;gt;...&lt;br&gt;
&amp;gt; Hello,&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; I want to export the data as xls file. But when I do so, an error has&lt;br&gt;
&amp;gt; occured. Here is the command I typed:&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; [phi,psi,xval] = wavefun('Haar', 8);&lt;br&gt;
&amp;gt; xlswrite('sample.xls', xval)&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; It said that I cannot save the data because the excel does not support&lt;br&gt;
&amp;gt; more than 256 rows and 65536 columns.. what should I do?&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; I am so frustrated because this is the first step of my project.</description>
    </item>
    <item>
      <pubDate>Mon, 27 Oct 2008 12:48:54 -0400</pubDate>
      <title>Re: Problems with export function</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/238227#607489</link>
      <author>Confusing</author>
      <description>Because my project is related to network traffic, I need to generate some waves and then put it into R/S filter to analyze. &lt;br&gt;
&lt;br&gt;
All I need to do is :&lt;br&gt;
&lt;br&gt;
(1) generate waves in matlab&lt;br&gt;
(2) save the data and then put it into R/S filter</description>
    </item>
    <item>
      <pubDate>Mon, 27 Oct 2008 13:04:20 -0400</pubDate>
      <title>Re: Problems with export function</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/238227#607493</link>
      <author>Ashish Uthama</author>
      <description>Try&lt;br&gt;
&amp;nbsp;&amp;nbsp;xlswrite('sample.xls', xval')&lt;br&gt;
to get around the 256 columns issue.&lt;br&gt;
&lt;br&gt;
Or you could break the data into segments lesses than 256.&lt;br&gt;
&lt;br&gt;
As &quot;Fangjun Jiang&quot; &amp;lt;f@j.com&amp;gt; mentioned, if you elaborate on why you need  &lt;br&gt;
to do this, someone might suggest alternatives which would get the same  &lt;br&gt;
work done.&lt;br&gt;
&lt;br&gt;
On Mon, 27 Oct 2008 08:18:58 -0400, &amp;lt;magic_ggg@hotmail.com&amp;gt; wrote:&lt;br&gt;
&lt;br&gt;
&amp;gt; Hello,&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; I want to export the data as xls file. But when I do so, an error has&lt;br&gt;
&amp;gt; occured. Here is the command I typed:&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; [phi,psi,xval] = wavefun('Haar', 8);&lt;br&gt;
&amp;gt; xlswrite('sample.xls', xval)&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; It said that I cannot save the data because the excel does not support&lt;br&gt;
&amp;gt; more than 256 rows and 65536 columns.. what should I do?&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; I am so frustrated because this is the first step of my project.&lt;br&gt;
&amp;gt;</description>
    </item>
    <item>
      <pubDate>Mon, 27 Oct 2008 15:09:11 -0400</pubDate>
      <title>Re: Problems with export function</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/238227#607531</link>
      <author>Confusing</author>
      <description>how to use xlswrite to get around the 256 column issue?&lt;br&gt;
how to break down the data segments in matlab?&lt;br&gt;
&lt;br&gt;
thanks!</description>
    </item>
    <item>
      <pubDate>Mon, 27 Oct 2008 15:56:13 -0400</pubDate>
      <title>Re: Problems with export function</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/238227#607546</link>
      <author>Walter Roberson</author>
      <description>Confusing wrote:&lt;br&gt;
&amp;gt; how to use xlswrite to get around the 256 column issue?&lt;br&gt;
&lt;br&gt;
You cannot.&lt;br&gt;
&lt;br&gt;
&lt;a href=&quot;http://office.microsoft.com/en-us/excel/HA101375451033.aspx&quot;&gt;http://office.microsoft.com/en-us/excel/HA101375451033.aspx&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
&amp;nbsp;&amp;nbsp;A Microsoft Office Excel worksheet contains 65,536 rows and 256 columns.&lt;br&gt;
&amp;nbsp;&amp;nbsp;You cannot increase the number of rows or columns beyond the maximum row and column limits.&lt;br&gt;
&lt;br&gt;
&lt;a href=&quot;http://support.microsoft.com/kb/264626&quot;&gt;http://support.microsoft.com/kb/264626&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
&amp;nbsp;&amp;nbsp;MORE INFORMATION&lt;br&gt;
&amp;nbsp;&amp;nbsp;You cannot exceed the maximum limits of features in Excel. For example, you cannot&lt;br&gt;
&amp;nbsp;&amp;nbsp;increase the number of worksheet rows beyond 65,536. &lt;br&gt;
&lt;br&gt;
&lt;a href=&quot;http://support.microsoft.com/kb/120596/en-us&quot;&gt;http://support.microsoft.com/kb/120596/en-us&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
&amp;nbsp;&amp;nbsp;In Microsoft Excel 97 for Windows, Microsoft Excel 2000, Microsoft Excel 2002, &lt;br&gt;
&amp;nbsp;&amp;nbsp;and Microsoft Office Excel 2003, text files that contain more than 65,536 rows&lt;br&gt;
&amp;nbsp;&amp;nbsp;cannot be opened in their entirety. You cannot open these files because these versions&lt;br&gt;
&amp;nbsp;&amp;nbsp;of Microsoft Excel are limited to 65,536 rows.&lt;br&gt;
&lt;br&gt;
&amp;nbsp;&amp;nbsp;Notes&lt;br&gt;
&lt;br&gt;
&amp;nbsp;&amp;nbsp;Versions of Excel earlier than Excel 97 have a limit of 16,384 rows.&lt;br&gt;
&lt;br&gt;
&amp;nbsp;&amp;nbsp;Versions of Excel later than Excel 2003 have a limit of 1,048,576 rows.&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&quot;Versions of Excel later than Excel 2003&quot; includes only &quot;Excel 2007&quot; at the present&lt;br&gt;
time. And Matlab's xlswrite() has not caught up to Excel 2007 format in your version.&lt;br&gt;
&lt;br&gt;
&amp;gt; how to break down the data segments in matlab?&lt;br&gt;
&lt;br&gt;
Do you really need binary Excel format? Or do you just need comma delimited format?&lt;br&gt;
If you just need a comman delimited format, use dlmwrite()</description>
    </item>
  </channel>
</rss>

