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
© 2005–2019 NumPy Developers
Licensed under the 3-clause BSD License.
https://docs.scipy.org/doc/numpy-1.14.5/reference/generated/numpy.polynomial.hermite.hermline.html