<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/234892</link>
    <title>MATLAB Central Newsreader - How to Export Data?</title>
    <description>Feed for thread: How to Export Data?</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>Wed, 20 Aug 2008 14:16:03 -0400</pubDate>
      <title>How to Export Data?</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/234892#596549</link>
      <author>Tom Choi</author>
      <description>Hi All,&lt;br&gt;
I have smoothed my data using cfttool, with 'loess'&lt;br&gt;
smoothing.  Cfttool shows me the graph of the smoothed data.&lt;br&gt;
&amp;nbsp;However, this is not what I want.  What I want is the&lt;br&gt;
individual x and y data values for the smoothed data.  How&lt;br&gt;
can I export it onto a text or excel file?  All I can get&lt;br&gt;
cfttool to do is to export it onto a struct. array onto the&lt;br&gt;
workspace.  I can't get any further than that.  Can somebody&lt;br&gt;
help me?</description>
    </item>
    <item>
      <pubDate>Wed, 20 Aug 2008 16:15:03 -0400</pubDate>
      <title>Re: How to Export Data?</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/234892#596596</link>
      <author>Donn Shull</author>
      <description>&quot;Tom Choi&quot; &amp;lt;style01@hotmail.co.uk&amp;gt; wrote in message &amp;lt;g8h8v2&lt;br&gt;
$gj8$1@fred.mathworks.com&amp;gt;...&lt;br&gt;
&amp;gt; Hi All,&lt;br&gt;
&amp;gt; I have smoothed my data using cfttool, with 'loess'&lt;br&gt;
&amp;gt; smoothing.  Cfttool shows me the graph of the smoothed &lt;br&gt;
data.&lt;br&gt;
&amp;gt;  However, this is not what I want.  What I want is the&lt;br&gt;
&amp;gt; individual x and y data values for the smoothed data.  How&lt;br&gt;
&amp;gt; can I export it onto a text or excel file?  All I can get&lt;br&gt;
&amp;gt; cfttool to do is to export it onto a struct. array onto &lt;br&gt;
the&lt;br&gt;
&amp;gt; workspace.  I can't get any further than that.  Can &lt;br&gt;
somebody&lt;br&gt;
&amp;gt; help me?&lt;br&gt;
&lt;br&gt;
There are so many ways to do what you want to do. For &lt;br&gt;
example if your data set is small you could display it on &lt;br&gt;
the screen with:&lt;br&gt;
&lt;br&gt;
disp([analysisresults1.xi, analysisresults1.yfit]);&lt;br&gt;
&lt;br&gt;
then select the displayed results with your mouse copy them &lt;br&gt;
and paste them into an editor.&lt;br&gt;
&lt;br&gt;
You could assign the results to an array:&lt;br&gt;
&lt;br&gt;
a = ([analysisresults1.xi, analysisresults1.yfit];&lt;br&gt;
&lt;br&gt;
to make it easy to try various things like:&lt;br&gt;
&lt;br&gt;
csvwrite('foo.csv', a);&lt;br&gt;
&lt;br&gt;
xlswrite('foo.xls', a);&lt;br&gt;
&lt;br&gt;
dlmwrite('foo.txt', a, ' ');&lt;br&gt;
&lt;br&gt;
etc&lt;br&gt;
&lt;br&gt;
Donn</description>
    </item>
    <item>
      <pubDate>Wed, 20 Aug 2008 17:57:01 -0400</pubDate>
      <title>Re: How to Export Data?</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/234892#596627</link>
      <author>Tom Choi</author>
      <description>thanks alot...it seems to be workig now!&lt;br&gt;
&lt;br&gt;
&quot;Donn Shull&quot; &amp;lt;donn.shull.no_spam@aetoolbox.com&amp;gt; wrote in&lt;br&gt;
message &amp;lt;g8hfu7$r7e$1@fred.mathworks.com&amp;gt;...&lt;br&gt;
&amp;gt; &quot;Tom Choi&quot; &amp;lt;style01@hotmail.co.uk&amp;gt; wrote in message &amp;lt;g8h8v2&lt;br&gt;
&amp;gt; $gj8$1@fred.mathworks.com&amp;gt;...&lt;br&gt;
&amp;gt; &amp;gt; Hi All,&lt;br&gt;
&amp;gt; &amp;gt; I have smoothed my data using cfttool, with 'loess'&lt;br&gt;
&amp;gt; &amp;gt; smoothing.  Cfttool shows me the graph of the smoothed &lt;br&gt;
&amp;gt; data.&lt;br&gt;
&amp;gt; &amp;gt;  However, this is not what I want.  What I want is the&lt;br&gt;
&amp;gt; &amp;gt; individual x and y data values for the smoothed data.  How&lt;br&gt;
&amp;gt; &amp;gt; can I export it onto a text or excel file?  All I can get&lt;br&gt;
&amp;gt; &amp;gt; cfttool to do is to export it onto a struct. array onto &lt;br&gt;
&amp;gt; the&lt;br&gt;
&amp;gt; &amp;gt; workspace.  I can't get any further than that.  Can &lt;br&gt;
&amp;gt; somebody&lt;br&gt;
&amp;gt; &amp;gt; help me?&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; There are so many ways to do what you want to do. For &lt;br&gt;
&amp;gt; example if your data set is small you could display it on &lt;br&gt;
&amp;gt; the screen with:&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; disp([analysisresults1.xi, analysisresults1.yfit]);&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; then select the displayed results with your mouse copy them &lt;br&gt;
&amp;gt; and paste them into an editor.&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; You could assign the results to an array:&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; a = ([analysisresults1.xi, analysisresults1.yfit];&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; to make it easy to try various things like:&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; csvwrite('foo.csv', a);&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; xlswrite('foo.xls', a);&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; dlmwrite('foo.txt', a, ' ');&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; etc&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; Donn&lt;br&gt;
&amp;gt; </description>
    </item>
  </channel>
</rss>

