fit type question for matlab

1 Ansicht (letzte 30 Tage)
Alex M
Alex M am 2 Mär. 2016
Bearbeitet: Alex M am 29 Mär. 2016
d

Akzeptierte Antwort

Jos (10584)
Jos (10584) am 2 Mär. 2016
A line that passes through the original has the equation y= a*x
Did you try using fittype and fit?
x=[-5 -4 -3 -2 -1 0 1 2 3 4 5 ];
y=[-478.4 -377.2 -278.6 -180.8 -84.5 0 85.25 181 278.2 377.5 479.2];
FITFUN = fittype('a*x')
FT = fit(x(:), y(:), FITFUN)
fittedY = FT([-6 6])
plot(x, y, 'bo', [-6 6], fittedY, 'rs-')

Weitere Antworten (0)

Kategorien

Mehr zu Linear and Nonlinear Regression finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by