numpy.polynomial.hermite.hermline
-
numpy.polynomial.hermite.hermline(off, scl)[source] -
Ряд Эрмита, график которого представляет прямую линию.
Параметры: off, scl : скаляры
Указанная прямая задаётся выражением
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
© 2008–2016 NumPy Developers
Licensed under the NumPy License.
https://docs.scipy.org/doc/numpy-1.11.0/reference/generated/numpy.polynomial.hermite.hermline.html