本文简要介绍 python 语言中 numpy.polynomial.laguerre.lagvander
的用法。
用法:
polynomial.laguerre.lagvander(x, deg)
Pseudo-Vandermonde 给定度数的矩阵。
返回度数的pseudo-Vandermonde 矩阵度和采样点x. pseudo-Vandermonde 矩阵定义为
其中 0 <= i <= 度。 V 的前导索引索引 x 的元素,最后一个索引是拉盖尔多项式的次数。
如果c是长度系数的一维数组n + 1和V是数组
V = lagvander(x, n)
, 然后np.dot(V, c)
和lagval(x, c)
在四舍五入之前是相同的。这种等价性对于最小二乘拟合和大量相同度数和样本点的拉盖尔级数的评估都是有用的。- x: array_like
点数组。 dtype 转换为 float64 或 complex128,具体取决于是否有任何元素是复杂的。如果 x 是标量,则将其转换为一维数组。
- deg: int
结果矩阵的度数。
- vander: ndarray
pseudo-Vandermonde 矩阵。返回矩阵的形状为
x.shape + (deg + 1,)
,其中最后一个索引是相应的拉盖尔多项式的次数。 dtype 将与转换后的相同x.
参数:
返回:
例子:
>>> from numpy.polynomial.laguerre import lagvander >>> x = np.array([0, 1, 2]) >>> lagvander(x, 3) array([[ 1. , 1. , 1. , 1. ], [ 1. , 0. , -0.5 , -0.66666667], [ 1. , -1. , -1. , -0.33333333]])
相关用法
- Python numpy laguerre.lagval用法及代码示例
- Python numpy laguerre.lagone用法及代码示例
- Python numpy laguerre.lagdomain用法及代码示例
- Python numpy laguerre.lagzero用法及代码示例
- Python numpy laguerre.lagdiv用法及代码示例
- Python numpy laguerre.lagx用法及代码示例
- Python numpy laguerre.lagroots用法及代码示例
- Python numpy laguerre.lagfromroots用法及代码示例
- Python numpy laguerre.lagmul用法及代码示例
- Python numpy laguerre.lagpow用法及代码示例
- Python numpy laguerre.lag2poly用法及代码示例
- Python numpy laguerre.lagder用法及代码示例
- Python numpy laguerre.lagsub用法及代码示例
- Python numpy laguerre.lagadd用法及代码示例
- Python numpy laguerre.lagtrim用法及代码示例
- Python numpy laguerre.lagmulx用法及代码示例
- Python numpy laguerre.lagline用法及代码示例
- Python numpy laguerre.lagfit用法及代码示例
- Python numpy laguerre.lagint用法及代码示例
- Python numpy laguerre.poly2lag用法及代码示例
- Python numpy legendre.legint用法及代码示例
- Python numpy linalg.svd用法及代码示例
- Python numpy linalg.pinv用法及代码示例
- Python numpy logaddexp用法及代码示例
- Python numpy linalg.eigh用法及代码示例
注:本文由纯净天空筛选整理自numpy.org大神的英文原创作品 numpy.polynomial.laguerre.lagvander。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。