Problems with exponential fit.

조회 수: 1 (최근 30일)
Todd Gross
Todd Gross 2015년 11월 30일
댓글: Todd Gross 2015년 12월 1일
I start with the following data:
x,y
0.0025,10
0.001818,100
0.001429,10000
And try to fit to rate=a*exp(bx) using the following code:
p=fit(x,y,'exp1');
p2=coeffvalues(p);
yfit=p2(1)*exp(p2(2)*x);
semilogy(x,y,'.',x,yfit)
and get a poor quality fit along with values that do not make sense. It really underestimates y for larger x.
Excel’s exponential fit seems reasonable.
Any ideas why the Matlab fit does not work. I was working with small x values so I multiplied by 1000 but it had no effect.

답변 (1개)

Walter Roberson
Walter Roberson 2015년 12월 1일
  댓글 수: 1
Todd Gross
Todd Gross 2015년 12월 1일
Using transformed coordinates e.g. log x and log y with a polynomial fit often leads to values other than A for x=0 when y = A*exp(bx). I am interested in learning why exp1 fit does not work well in Matlab when the similar function in Excel seems to work well.

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Get Started with Curve Fitting Toolbox에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by