FitPoly 命令
- FitPoly( <List of Points>, <Degree of Polynomial> )
-
计算给定 次数 的拟合指定 点 .
FitPoly({(-1, -1), (0, 1), (1, 1), (2, 5)}, 3)
的多项式回归模型,得出
f(x) = x
3
- 1 x
2
+ 1
.
- FitPoly( <Freehand Function>, <Degree of Polynomial> )
-
计算给定 次数 的拟合使用 Freehand_Shape .