This is documentation for an old release of SciPy (version 0.9.0). Read this page in the documentation of the latest stable release (version 1.15.1).
Compute a definite integral using fixed-order Gaussian quadrature.
Integrate func from a to b using Gaussian quadrature of order n.
Parameters : | func : callable
a : float
b : float
args : tuple, optional
n : int, optional
|
---|---|
Returns : | val : float
|