<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/265149</link>
    <title>MATLAB Central Newsreader - non linear fitting tool</title>
    <description>Feed for thread: non linear fitting tool</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>Fri, 06 Nov 2009 08:32:03 -0500</pubDate>
      <title>non linear fitting tool</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/265149#692619</link>
      <author>Samoline1 Linke</author>
      <description>Hi,&lt;br&gt;
&lt;br&gt;
I have read the non linear fitting tool tutorial but could not understand it well. Is there someone who could just tell me the method with the following simple example&lt;br&gt;
&lt;br&gt;
e.g. &lt;br&gt;
&lt;br&gt;
x = [1 2 3 4 5]&lt;br&gt;
&lt;br&gt;
y = [ 0.01 0.02 0.04 0.08 0.16 ]&lt;br&gt;
&lt;br&gt;
If we do: scatter (x, y) we can see it would give a look of exponential function. &lt;br&gt;
&lt;br&gt;
How can we fit an estimate curve in this graph? I think we need nlintool but how to deal with this data there?</description>
    </item>
    <item>
      <pubDate>Fri, 06 Nov 2009 09:54:01 -0500</pubDate>
      <title>Re: non linear fitting tool</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/265149#692632</link>
      <author>Samoline1 Linke</author>
      <description>&quot;Samoline1 Linke&quot; &amp;lt;maganatewoman@yahoo.com&amp;gt; wrote in message &amp;lt;hd0mu3$i27$1@fred.mathworks.com&amp;gt;...&lt;br&gt;
&amp;gt; Hi,&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; I have read the non linear fitting tool tutorial but could not understand it well. Is there someone who could just tell me the method with the following simple example&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; e.g. &lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; x = [1 2 3 4 5]&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; y = [ 0.01 0.02 0.04 0.08 0.16 ]&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; If we do: scatter (x, y) we can see it would give a look of exponential function. &lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; How can we fit an estimate curve in this graph? I think we need nlintool but how to deal with this data there?&lt;br&gt;
-------------&lt;br&gt;
&lt;br&gt;
ADDITION:&lt;br&gt;
&lt;br&gt;
I think the formula would be like:&lt;br&gt;
&lt;br&gt;
Y  =  b0 * exp ( b1 * x )&lt;br&gt;
&lt;br&gt;
But how to apply it in nlintool?</description>
    </item>
    <item>
      <pubDate>Fri, 06 Nov 2009 21:54:46 -0500</pubDate>
      <title>Re: non linear fitting tool</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/265149#692799</link>
      <author>Tom Lane</author>
      <description>&amp;gt; Y  =  b0 * exp ( b1 * x )&lt;br&gt;
&amp;gt;&lt;br&gt;
&amp;gt; But how to apply it in nlintool?&lt;br&gt;
&lt;br&gt;
nlintool(x, y, @(p,x) p(1)*exp(p(2)*x), [.01 .2]) </description>
    </item>
    <item>
      <pubDate>Mon, 09 Nov 2009 10:03:03 -0500</pubDate>
      <title>Re: non linear fitting tool</title>
      <link>http://www.mathworks.com/matlabcentral/newsreader/view_thread/265149#693167</link>
      <author>Frederic Moisy</author>
      <description>You can use the Ezyfit toolbox for this purpose,&lt;br&gt;
&lt;a href=&quot;http://www.mathworks.com/matlabcentral/fileexchange/10176-ezyfit-2-30&quot;&gt;http://www.mathworks.com/matlabcentral/fileexchange/10176-ezyfit-2-30&lt;/a&gt;&lt;br&gt;
Have also a look to the example file, where&lt;br&gt;
the fit of an exponential is illustrated:&lt;br&gt;
&lt;a href=&quot;http://www.mathworks.com/matlabcentral/fx_files/10176/3/content/ezyfit/demo/html/efdemo.html&quot;&gt;http://www.mathworks.com/matlabcentral/fx_files/10176/3/content/ezyfit/demo/html/efdemo.html&lt;/a&gt;&lt;br&gt;
Frederic&lt;br&gt;
&lt;br&gt;
&lt;br&gt;
&quot;Samoline1 Linke&quot; &amp;lt;maganatewoman@yahoo.com&amp;gt; wrote in message &amp;lt;hd0mu3$i27$1@fred.mathworks.com&amp;gt;...&lt;br&gt;
&amp;gt; Hi,&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; I have read the non linear fitting tool tutorial but could not understand it well. Is there someone who could just tell me the method with the following simple example&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; e.g. &lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; x = [1 2 3 4 5]&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; y = [ 0.01 0.02 0.04 0.08 0.16 ]&lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; If we do: scatter (x, y) we can see it would give a look of exponential function. &lt;br&gt;
&amp;gt; &lt;br&gt;
&amp;gt; How can we fit an estimate curve in this graph? I think we need nlintool but how to deal with this data there?</description>
    </item>
  </channel>
</rss>

