Azzera filtri
Azzera filtri

how to fit a curve to 3 points automatically?

15 visualizzazioni (ultimi 30 giorni)
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 Commenti
Jos (10584)
Jos (10584) il 2 Mar 2016
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 il 2 Mar 2016
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

Accedi per commentare.

Risposta accettata

Torsten
Torsten il 3 Mar 2016
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.

Più risposte (1)

Jos (10584)
Jos (10584) il 2 Mar 2016
FT = fittype('a*x^2')
MDL = fit(x(:),y(:),FT)
MDL.a

Community Treasure Hunt

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

Start Hunting!

Translated by