Welcome to Integrate’s documentation!

This is a small library that does basic newton cotes and monte carlo integration

integrate.newton_cotes.simpson.evaluate(bounds, func)
Evaluates simpsons rules on an array of values and a function pointer.
\[ \begin{align}\begin{aligned}\int _{a}^{b} = \sum _i ...\\Parameters ---------- bounds : array_like An array of dimention two with the starting and ending points. func : function Produces the integrand at a point\\Returns ------- integral : float The integral function between the bounds\end{aligned}\end{align} \]

Indices and tables