numpy.polynomial.hermite.hermline
-
numpy.polynomial.hermite.hermline(off, scl)[source] -
Ряд Эрмита, график которого является прямой линией.
Параметры: -
off, scl : scalars -
Указанная прямая задаётся
off + scl*x.
Возвращает: -
y : ndarray -
Представление этого модуля ряда Эрмита для
off + scl*x.
См. также
polyline,cheblineПримеры
>>> from numpy.polynomial.hermite import hermline, hermval >>> hermval(0,hermline(3, 2)) 3.0 >>> hermval(1,hermline(3, 2)) 5.0
-
© 2005–2019 NumPy Developers
Licensed under the 3-clause BSD License.
https://docs.scipy.org/doc/numpy-1.15.4/reference/generated/numpy.polynomial.hermite.hermline.html