Path: news.mathworks.com!not-for-mail
From: <HIDDEN>
Newsgroups: comp.soft-sys.matlab
Subject: Re: non linear fitting tool
Date: Fri, 6 Nov 2009 09:54:01 +0000 (UTC)
Organization: The MathWorks, Inc.
Lines: 23
Message-ID: <hd0rnp$43i$1@fred.mathworks.com>
References: <hd0mu3$i27$1@fred.mathworks.com>
Reply-To: <HIDDEN>
NNTP-Posting-Host: webapp-05-blr.mathworks.com
Content-Type: text/plain; charset="ISO-8859-1"
Content-Transfer-Encoding: 8bit
X-Trace: fred.mathworks.com 1257501241 4210 172.30.248.35 (6 Nov 2009 09:54:01 GMT)
X-Complaints-To: news@mathworks.com
NNTP-Posting-Date: Fri, 6 Nov 2009 09:54:01 +0000 (UTC)
X-Newsreader: MATLAB Central Newsreader 2026598
Xref: news.mathworks.com comp.soft-sys.matlab:582963


"Samoline1 Linke" <maganatewoman@yahoo.com> wrote in message <hd0mu3$i27$1@fred.mathworks.com>...
> Hi,
> 
> 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
> 
> e.g. 
> 
> x = [1 2 3 4 5]
> 
> y = [ 0.01 0.02 0.04 0.08 0.16 ]
> 
> If we do: scatter (x, y) we can see it would give a look of exponential function. 
> 
> How can we fit an estimate curve in this graph? I think we need nlintool but how to deal with this data there?
-------------

ADDITION:

I think the formula would be like:

Y  =  b0 * exp ( b1 * x )

But how to apply it in nlintool?