This is documentation for an old release of NumPy (version 1.7.0). Read this page in the documentation of the latest stable release (version > 1.17).
Hermite series whose graph is a straight line.
Parameters : | off, scl : scalars
|
---|---|
Returns : | y : ndarray
|
See also
polyline, chebline
Examples
>>> from numpy.polynomial.hermite import hermline, hermval
>>> hermval(0,hermline(3, 2))
3.0
>>> hermval(1,hermline(3, 2))
5.0