フィルターのクリア

Fitting a quadratic model with the coefficient of linear term fixed

34 ビュー (過去 30 日間)
Anand P
Anand P 2020 年 3 月 19 日
回答済み: Ameer Hamza 2020 年 3 月 19 日
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?

採用された回答

Ameer Hamza
Ameer Hamza 2020 年 3 月 19 日
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);

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeLinear and Nonlinear Regression についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by