numpy.polynomial.legendre.Legendre.degree#
方法
- polynomial.legendre.Legendre.degree()[source]#
级数的阶数。
1.5.0 版中的新内容。
- 返回值:
- degreeint
级数的阶数,比系数数量少 1。
示例
为
1 + 7*x + 4*x**2
创建多项式对象>>> poly = np.polynomial.Polynomial([1, 7, 4]) >>> print(poly) 1.0 + 7.0·x + 4.0·x² >>> poly.degree() 2
请注意,此方法不会检查非零系数。您必须修剪多项式以移除任何尾随零
>>> poly = np.polynomial.Polynomial([1, 7, 0]) >>> print(poly) 1.0 + 7.0·x + 0.0·x² >>> poly.degree() 2 >>> poly.trim().degree() 1