フィルターのクリア

What is the difference between polyfit and curve fitting

29 ビュー (過去 30 日間)
Masoud Ghanbari
Masoud Ghanbari 2013 年 3 月 20 日
コメント済み: Armani 2024 年 1 月 8 日
Hi
What is the difference between polyfit and curve fitting ?
would you please see this page explain me these command:
modelFun = @(p,x) p(3) .* (x ./ p(1)).^(p(2)-1) .* exp(-(x ./ p(1)).^p(2));
startingVals = [10 2 5];
coefEsts = nlinfit(time, conc, modelFun, startingVals);
xgrid = linspace(0,20,100);
line(xgrid, modelFun(coefEsts, xgrid), 'Color','r');
And The Page Is:
  1 件のコメント
Masoud Ghanbari
Masoud Ghanbari 2013 年 3 月 20 日
The typed command is on the selected page also
THNX

サインインしてコメントする。

採用された回答

Shashank Prasanna
Shashank Prasanna 2013 年 3 月 21 日
I would encourage you to look at the documentation page of the functions you are you using to get a better idea of what each function is suited for.
POLYFIT:
As Matt J mentioned is used to fit polynomials
NLINFIT:
Is non linear fitting/regression for models that need not be polynomials, but can be. Go through the examples in the above links to get a better idea.
  3 件のコメント
Matt J
Matt J 2013 年 3 月 22 日
編集済み: Matt J 2013 年 3 月 22 日
You need to decide first what kind of function gives a good model for your (x,y) data. If the (x,y) data come from a polynomial, use POLYFIT. If they come from a more complicated function, use NLINFIT.
Masoud Ghanbari
Masoud Ghanbari 2013 年 3 月 28 日
Thanks Dear Matt J

サインインしてコメントする。

その他の回答 (1 件)

Matt J
Matt J 2013 年 3 月 20 日
POLYFIT applies to polynomial fitting only.
  1 件のコメント
Armani
Armani 2024 年 1 月 8 日
That's correct! POLYFIT is a function specifically designed for fitting polynomial curves to data.
POLYFIT returns the coefficients of the fitted polynomial. These coefficients can be used to create the equation of the polynomial curve, getaway shootout can then be used for various purposes such as prediction, interpolation, or smoothing.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangePolynomials についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by