This is documentation for an old release of NumPy (version 1.7.0). Read this page Search for this page in the documentation of the latest stable release (version > 1.17).
numpy.polynomial.hermite.Hermite.integ
-
Hermite.integ(m=1, k=[], lbnd=None)
Integrate.
Return an instance of Hermite that is the definite integral of the
current series. Refer to hermint for full documentation.
Parameters : | m : non-negative int
The number of integrations to perform.
k : array_like
Integration constants. The first constant is applied to the
first integration, the second to the second, and so on. The
list of values must less than or equal to m in length and any
missing values are set to zero.
lbnd : Scalar
The lower bound of the definite integral.
|
Returns : | integral : Hermite
The integral of the series using the same domain.
|
See also
- hermint
- similar function.
- hermder
- similar function for derivative.