本文简要介绍 python 语言中 numpy.polynomial.polynomial.polyline
的用法。
用法:
polynomial.polynomial.polyline(off, scl)
返回一个表示线性多项式的数组。
- off, scl: 标量
分别是行的“y-intercept” 和“slope”。
- y: ndarray
该模块对线性多项式
off + scl*x
的表示。
参数:
返回:
例子:
>>> from numpy.polynomial import polynomial as P >>> P.polyline(1,-1) array([ 1, -1]) >>> P.polyval(1, P.polyline(1,-1)) # should be 0 0.0
相关用法
- Python numpy polynomial.polyfit用法及代码示例
- Python numpy polynomial.polyadd用法及代码示例
- Python numpy polynomial.polyder用法及代码示例
- Python numpy polynomial.polydomain用法及代码示例
- Python numpy polynomial.polyint用法及代码示例
- Python numpy polynomial.polydiv用法及代码示例
- Python numpy polynomial.polyvalfromroots用法及代码示例
- Python numpy polynomial.polyval用法及代码示例
- Python numpy polynomial.polysub用法及代码示例
- Python numpy polynomial.polyx用法及代码示例
- Python numpy polynomial.polytrim用法及代码示例
- Python numpy polynomial.polyfromroots用法及代码示例
- Python numpy polynomial.polyroots用法及代码示例
- Python numpy polynomial.polymul用法及代码示例
- Python numpy polynomial.polyzero用法及代码示例
- Python numpy polynomial.polyone用法及代码示例
- Python numpy polynomial.polypow用法及代码示例
- Python numpy polynomial.set_default_printstyle用法及代码示例
- Python numpy polyder用法及代码示例
- Python numpy polyfit用法及代码示例
- Python numpy polyutils.as_series用法及代码示例
- Python numpy poly用法及代码示例
- Python numpy polysub用法及代码示例
- Python numpy polyutils.getdomain用法及代码示例
- Python numpy polyutils.mapdomain用法及代码示例
注:本文由纯净天空筛选整理自numpy.org大神的英文原创作品 numpy.polynomial.polynomial.polyline。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。