Module reikna::integral [] [src]

Module for working with integrals.

This module has functions for estimating the values of integrals through numeric integration techniques.

Reexports

pub use super::func::*;

Constants

DEFAULT_PRECISION

The default precision constant used in integrate.

Functions

integral

Return a Function that estimates the integral of f, using a constant of c and a positive precision constant of p.

integrate

Estimate the value of the integral of f over [a, b].

integrate_wp

Estimate the value of the integral of f over [a, b] using p subintervals.

nth_integral

Return a Function that estimates the nth integral of f, using a constant of c and a positive precision constant of p.