quadrature(func, a, b, args=(), tol=1.49e-08, rtol=1.49e-08, maxiter=50, vec_func=True, miniter=1)
A Python function or method to integrate.
Lower limit of integration.
Upper limit of integration.
Extra arguments to pass to function.
Maximum order of Gaussian quadrature.
True or False if func handles arrays as arguments (is a "vector" function). Default is True.
Minimum order of Gaussian quadrature.
Gaussian quadrature approximation (within tolerance) to integral.
Difference between last two estimates of the integral.
Compute a definite integral using fixed-tolerance Gaussian quadrature.
cumulative_trapezoid
dblquad
fixed_quad
ode
odeint
quad
romb
romberg
simpson
tplquad
from scipy import integrate
import numpy as np
f = lambda x: x**8
integrate.quadrature(f, 0.0, 1.0)
print(1/9.0) # analytical result
integrate.quadrature(np.cos, 0.0, np.pi/2)
np.sin(np.pi/2)-np.sin(0) # analytical result
Hover to see nodes names; edges to Self not shown, Caped at 50 nodes.
Using a canvas is more power efficient and can get hundred of nodes ; but does not allow hyperlinks; , arrows or text (beyond on hover)
SVG is more flexible but power hungry; and does not scale well to 50 + nodes.
All aboves nodes referred to, (or are referred from) current nodes; Edges from Self to other have been omitted (or all nodes would be connected to the central node "self" which is not useful). Nodes are colored by the library they belong to, and scaled with the number of references pointing them