Least Squares Method- Νon linear to Linear

2 次查看(过去 30 天)
Hello! I need to approach some given points [X,Y]with the use of the method of the least squares.Also,for the approximation of these points we have the function f=ax/(b+x).My problem is that I can't bring the function to the standard form f=aX+b.Does anyone know what should I do? Thank you in advance!

采纳的回答

Shashank Prasanna
You are talking about two different things here.
f=aX+b
is linear regression which can be solved by either \ or the regress function.
f=ax/(b+x)
as you noted is non-linear, you can use nlinfit in the statistics toolbox or set up your own optimization routine using fminsearch by setting up a least squares to solve it.
The following link should help you in this venture:
That said of course you can fit your data using the first linear model, but depending on your data this may not be the right model, but its this or that, its your choice of model for your data.

更多回答(1 个)

Bill Whiten
Bill Whiten 2013-2-9
You can write the equation as f=(a/b)x-(1/b)fx and use linear regression for the coefficients (a/b) and (1/b). Convert these to a and b as initial estimates for fminsearch or non linear least squares functions.

类别

Help CenterFile Exchange 中查找有关 Linear and Nonlinear Regression 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by