How to fit regression

조회 수: 2 (최근 30일)
John fredson
John fredson 2022년 5월 20일
댓글: Bjorn Gustavsson 2022년 5월 20일
I have a equation y = Ae^-Bx, how to polyfit it and find A and B?

답변 (1개)

Bjorn Gustavsson
Bjorn Gustavsson 2022년 5월 20일
This is not a polynomial, therefore you cannot use polyfit. You can seamlessly use any least-square fitting routine to fit your 2 parameters. For example something like this:
mod_fcn = @(pars,x) pars(1)*exp(-pars(2)*x); % Describes your model y = A*exp(-B*x)
err_fcn = @(pars,x,y,sigma_y,m_fcn) sum((y(:)-m_fcn(pars,x(:))).^2./sigma_y^2);% general sum-of-squares function
par0 = [1 1]; % initial guess
parbest = fminsearch(@(pars) err_fcn(pars,x,y,ones(size(y))),par0); % least-square fitting
You can sometimes get far better performance with lsqnonlin. Check the help and documentation for that function and fminsearch.
HTH
  댓글 수: 2
John fredson
John fredson 2022년 5월 20일
can use linear regression file?
Bjorn Gustavsson
Bjorn Gustavsson 2022년 5월 20일
Yes, if you mean your topspin.txt file. Just use the time in the first column for x (or more neatly replace x with t in my code-snippet) and set y to the rotational speed in the second column.

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

카테고리

Help CenterFile Exchange에서 Descriptive Statistics에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by