matlab fit exp2

Posted by HelloWorld on Stack Overflow See other posts from Stack Overflow or by HelloWorld
Published on 2012-09-02T09:16:53Z Indexed on 2012/09/02 15:38 UTC
Read the original article Hit count: 299

I'm unsuccessfully looking for documentation of fit function using exp2 (sum of 2 exponents). How to operate the function is clear:

[curve, gof] = fit(x, y,'exp2');

But since there are multiple ways to fit a sum of exponents I'm trying to find out what algorithm is used. Particularly what happens when I'm fitting one exponent (the raw data) with a bit of noise, how the exponents are spread. I've simulated several cases, and it seems that it "drops" all the weight on the second set of coefficients, but row data analysis often shows different behavior.

Does anyone have suggestions of documentation?

© Stack Overflow or respective owner

Related posts about matlab

Related posts about numerical-methods