本文简要介绍 python 语言中 numpy.polynomial.chebyshev.chebline
的用法。
用法:
polynomial.chebyshev.chebline(off, scl)
切比雪夫级数,其图形是一条直线。
- off, scl: 标量
指定的行由
off + scl*x
给出。
- y: ndarray
该模块表示
off + scl*x
的切比雪夫级数。
参数:
返回:
例子:
>>> import numpy.polynomial.chebyshev as C >>> C.chebline(3,2) array([3, 2]) >>> C.chebval(-3, C.chebline(3,2)) # should be -3 -3.0
相关用法
- Python numpy chebyshev.chebsub用法及代码示例
- Python numpy chebyshev.chebdiv用法及代码示例
- Python numpy chebyshev.cheb2poly用法及代码示例
- Python numpy chebyshev.chebx用法及代码示例
- Python numpy chebyshev.chebmul用法及代码示例
- Python numpy chebyshev.chebroots用法及代码示例
- Python numpy chebyshev.chebtrim用法及代码示例
- Python numpy chebyshev.chebone用法及代码示例
- Python numpy chebyshev.chebder用法及代码示例
- Python numpy chebyshev.chebint用法及代码示例
- Python numpy chebyshev.chebadd用法及代码示例
- Python numpy chebyshev.chebdomain用法及代码示例
- Python numpy chebyshev.chebfromroots用法及代码示例
- Python numpy chebyshev.chebfit用法及代码示例
- Python numpy chebyshev.chebzero用法及代码示例
- Python numpy chebyshev.chebpow用法及代码示例
- Python numpy chebyshev.chebmulx用法及代码示例
- Python numpy chebyshev.chebinterpolate用法及代码示例
- Python numpy chebyshev.poly2cheb用法及代码示例
- Python numpy chararray.ndim用法及代码示例
- Python numpy chararray.nbytes用法及代码示例
- Python numpy chararray.setflags用法及代码示例
- Python numpy chararray.flat用法及代码示例
- Python numpy chararray.strides用法及代码示例
- Python numpy chararray.view用法及代码示例
注:本文由纯净天空筛选整理自numpy.org大神的英文原创作品 numpy.polynomial.chebyshev.chebline。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。