w********r 发帖数: 157 | 1 我有一组数据
x y
1 8
2 12
3 18
4 22
5 26
想 fit 到一个多项式Y=A X + B X(root)从而得到A和B并作图。
第一次用MATLAB,不知该如何入手。请各位高手指点! |
y**y 发帖数: 25 | 2 do you mean Y=A*X+B*sqrt(X)?
【在 w********r 的大作中提到】 : 我有一组数据 : x y : 1 8 : 2 12 : 3 18 : 4 22 : 5 26 : 想 fit 到一个多项式Y=A X + B X(root)从而得到A和B并作图。 : 第一次用MATLAB,不知该如何入手。请各位高手指点!
|
w********r 发帖数: 157 | 3
YES
【在 y**y 的大作中提到】 : do you mean Y=A*X+B*sqrt(X)?
|
l*****i 发帖数: 3929 | 4 lsqcurvefit
【在 w********r 的大作中提到】 : 我有一组数据 : x y : 1 8 : 2 12 : 3 18 : 4 22 : 5 26 : 想 fit 到一个多项式Y=A X + B X(root)从而得到A和B并作图。 : 第一次用MATLAB,不知该如何入手。请各位高手指点!
|
w********r 发帖数: 157 | 5
能否请告知具体的command lines?
非常感谢!!!!!!!!!!
【在 l*****i 的大作中提到】 : lsqcurvefit
|
l*****i 发帖数: 3929 | 6 lsqcurvefit - Solve nonlinear curve-fitting (data-fitting) problems in least
-squares sense
Equation
Find coefficients x that best fit the equation
given input data xdata, and the observed output ydata, where xdata and ydata
are matrices or vectors of length m, and F (x, xdata) is a matrix-valued or
vector-valued function.
The lsqcurvefit function uses the same algorithm as lsqnonlin, and provides
an interface designed specifically for data-fitting problems.
Syntax
x = lsqcurvefit(fun,x0,xdata,y
【在 w********r 的大作中提到】 : : 能否请告知具体的command lines? : 非常感谢!!!!!!!!!!
|