How to fit custom polynomial equation?

2 ビュー (過去 30 日間)
Vick
Vick 2020 年 3 月 26 日
編集済み: John D'Errico 2020 年 3 月 26 日
Following is the poly32 model,
equation(x,y) = p00 + p10*x + p01*y + p20*x^2 + p11*x*y + p02*y^2 + p30*x^3 +
p21*x^2*y + p12*x*y^2
In the above equation i dont want p12*x*y^2 during my curve fitting(i.e. p12 should be zero). How can i achieve it?

採用された回答

John D'Errico
John D'Errico 2020 年 3 月 26 日
編集済み: John D'Errico 2020 年 3 月 26 日
You could download polyfitn from the file exchange.
But if you already know how to use the curve fitting toolbox, then just specify a custom equation of the desired form. Something like this:
modelform = fittype('p00 + p10*x + p01*y + p20*x^2 + p11*x*y + p02*y^2 + p30*x^3 + p21*x^2*y',...
'coeff',{'p00','p10','p01','p20','p11','p02','p30','p21'},...
'indep',{'x','y'},'depend','z');
It will be treated as a nonlinear model internally as a function of the parameters, but since all of the coefficients actually do enter linearly, they will be easy to fit. fit should have no problems.

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeGet Started with Curve Fitting Toolbox についてさらに検索

タグ

製品


リリース

R2018a

Community Treasure Hunt

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

Start Hunting!

Translated by