Legendre Module (numpy.polynomial.legendre
)¶
版本1.6.0中的新功能。
此模块提供了许多对处理Legendre系列有用的对象(主要是函数),包括封装了常用算术运算的Legendre
类。(关于此模块如何表示和使用这样的多项式的一般信息在其“父”子包的文档字符串中,numpy.polynomial
)。
Basics¶
legval (x,c [,tensor]) |
在点x评估Legendre系列。 |
legval2d (x,y,c) |
在点(x,y)评估2-D Legendre系列。 |
legval3d (x,y,z,c) |
在点(x,y,z)评估3-D Legendre系列。 |
leggrid2d (x,y,c) |
在x和y的笛卡尔乘积上评估2-D Legendre系列。 |
leggrid3d (x,y,z,c) |
在x,y和z的笛卡尔乘积上评估3-D Legendre系列。 |
legroots (c) |
计算一个Legendre系列的根。 |
legfromroots (根) |
生成具有给定根的Legendre系列。 |
Fitting¶
legfit (x,y,deg [,rcond,full,w]) |
Legendre系列的最小二乘法拟合数据。 |
legvander (x,deg) |
给定程度的伪Vandermonde矩阵。 |
legvander2d (x,y,deg) |
给定度的伪Vandermonde矩阵。 |
legvander3d (x,y,z,deg) |
给定度的伪Vandermonde矩阵。 |