Filter löschen
Filter löschen

Fitting a quadratic model with the coefficient of linear term fixed

34 Ansichten (letzte 30 Tage)
A quadratic equation is given by y = ax^2 + b^x +c.
Matlab function 'fit' is used to fit a relation between input and output.
I need to fit a quadratic function between input and output with the coefficient b fixed. How is that done in MATLAB?

Akzeptierte Antwort

Ameer Hamza
Ameer Hamza am 19 Mär. 2020
You can use fittype to specify the type of function you want to fit
x = linspace(0, 2, 100);
y = 2*x.^2 + 3*x + 4;
ft1 = fittype('a*x^2+b*x+c');
fit1 = fit(x',y',ft1);
ft2 = fittype('a*x^2+2.5*x+c'); % <--- fix the coefficient of x
fit2 = fit(x',y',ft2);

Weitere Antworten (0)

Kategorien

Mehr zu Linear and Nonlinear Regression finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by