フィルターのクリア

how to fit a curve to 3 points automatically?

15 ビュー (過去 30 日間)
Marry M
Marry M 2016 年 3 月 2 日
回答済み: Torsten 2016 年 3 月 3 日
Guys, I'd like to find an automatic method for fitting y=-x^2 curve to three points x=[12 67 16]; can any one suggest me a matlab code please?
  5 件のコメント
Jos (10584)
Jos (10584) 2016 年 3 月 2 日
What are the parameters you want to estimate? Fitting a curve involves finding values for one or more unknown parameters, like finding A and B in the equation Yfit = A*x^2 + B that minimises the overal "distance" between the known values of y and the fitted values Yfit
Marry M
Marry M 2016 年 3 月 2 日
attached a sample what i meant, is it possible for me to find a cure like in the photo (red) fitted 3 points (back here)? if so, how? thanks alot

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

採用された回答

Torsten
Torsten 2016 年 3 月 3 日
Maybe something like
A=[x1^2 x1 1
x2^2 x2 1
x3^2 x3 1];
rhs=[y1 ; y2 ; y3];
sol=A\b;
func=@(x)sol(1)*x.^2+sol(2)*x+sol(3);
x=x1:0.1:x2;
y=func(x);
plot(x,y)
where (x1,y1), (x2,y2), (x3,y3) are the points in question ?
Best wishes
Torsten.

その他の回答 (1 件)

Jos (10584)
Jos (10584) 2016 年 3 月 2 日
FT = fittype('a*x^2')
MDL = fit(x(:),y(:),FT)
MDL.a

カテゴリ

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

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by