本文简要介绍 python 语言中 numpy.polynomial.hermite_e.hermeline
的用法。
用法:
polynomial.hermite_e.hermeline(off, scl)
Hermite 系列,其图形是一条直线。
- off, scl: 标量
指定的行由
off + scl*x
给出。
- y: ndarray
该模块对
off + scl*x
的 Hermite 系列的表示。
参数:
返回:
例子:
>>> from numpy.polynomial.hermite_e import hermeline >>> from numpy.polynomial.hermite_e import hermeline, hermeval >>> hermeval(0,hermeline(3, 2)) 3.0 >>> hermeval(1,hermeline(3, 2)) 5.0
相关用法
- Python numpy hermite_e.hermediv用法及代码示例
- Python numpy hermite_e.hermefromroots用法及代码示例
- Python numpy hermite_e.hermeint用法及代码示例
- Python numpy hermite_e.hermeadd用法及代码示例
- Python numpy hermite_e.hermevander用法及代码示例
- Python numpy hermite_e.hermepow用法及代码示例
- Python numpy hermite_e.hermetrim用法及代码示例
- Python numpy hermite_e.hermezero用法及代码示例
- Python numpy hermite_e.hermex用法及代码示例
- Python numpy hermite_e.hermemulx用法及代码示例
- Python numpy hermite_e.hermeone用法及代码示例
- Python numpy hermite_e.hermeval用法及代码示例
- Python numpy hermite_e.hermesub用法及代码示例
- Python numpy hermite_e.hermefit用法及代码示例
- Python numpy hermite_e.hermedomain用法及代码示例
- Python numpy hermite_e.herme2poly用法及代码示例
- Python numpy hermite_e.hermeder用法及代码示例
- Python numpy hermite_e.hermemul用法及代码示例
- Python numpy hermite_e.hermeroots用法及代码示例
- Python numpy hermite_e.poly2herme用法及代码示例
- Python numpy hermite.hermfromroots用法及代码示例
- Python numpy hermite.hermline用法及代码示例
- Python numpy hermite.hermpow用法及代码示例
- Python numpy hermite.hermx用法及代码示例
- Python numpy hermite.hermmul用法及代码示例
注:本文由纯净天空筛选整理自numpy.org大神的英文原创作品 numpy.polynomial.hermite_e.hermeline。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。