本文简要介绍 python 语言中 numpy.polynomial.legendre.Legendre.mapparms
的用法。
用法:
polynomial.legendre.Legendre.mapparms()
返回映射参数。
返回的值定义了一个线性映射
off + scl*x
,该映射在评估系列之前应用于输入参数。Map取决于domain
和window
;如果当前的domain
等于window
,则生成的映射就是标识。如果系列实例的系数要在此类之外单独使用,则必须用线性函数替换基本多项式标准表示中的x
。- off, scl: 浮点数或复杂
映射函数由
off + scl*x
定义。
返回:
注意:
如果当前域是区间
[l1, r1]
并且窗口是[l2, r2]
,则线性映射函数L
由以下等式定义:L(l1) = l2 L(r1) = r2
相关用法
- Python numpy Laguerre.mapparms用法及代码示例
- Python numpy RandomState.standard_exponential用法及代码示例
- Python numpy hamming用法及代码示例
- Python numpy legendre.legint用法及代码示例
- Python numpy chararray.ndim用法及代码示例
- Python numpy chebyshev.chebsub用法及代码示例
- Python numpy chararray.nbytes用法及代码示例
- Python numpy ma.indices用法及代码示例
- Python numpy matrix.A1用法及代码示例
- Python numpy MaskedArray.var用法及代码示例
- Python numpy ma.zeros用法及代码示例
- Python numpy broadcast用法及代码示例
- Python numpy matrix.T用法及代码示例
- Python numpy matrix.I用法及代码示例
- Python numpy MaskedArray.T用法及代码示例
- Python numpy hermite.hermfromroots用法及代码示例
- Python numpy hermite_e.hermediv用法及代码示例
- Python numpy recarray.dot用法及代码示例
- Python numpy random.mtrand.RandomState.wald用法及代码示例
- Python numpy trim_zeros用法及代码示例
- Python numpy chebyshev.chebdiv用法及代码示例
- Python numpy linalg.svd用法及代码示例
- Python numpy copy用法及代码示例
- Python numpy negative用法及代码示例
- Python numpy ndarray.astype用法及代码示例
注:本文由纯净天空筛选整理自numpy.org大神的英文原创作品 numpy.polynomial.legendre.Legendre.mapparms。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。