Expand description
Numerical integration using the Gauss-Chebyshev quadrature rule.
This rule can integrate formulas on the form f(x) * (1 - x^2)^a
on finite intervals, where a
is either -1/2 or 1/2.
Structsยง
- The error returned when attempting to create a
GaussChebyshevFirstKind
orGaussChebyshevSecondKind
struct with a degree less than 2. - A Gauss-Chebyshev quadrature scheme of the first kind.
- An owning iterator over the node-weight pairs of the quadrature rule.
- An iterator over the node-weight pairs of the quadrature rule.
- An iterator over the nodes of the quadrature rule.
- An iterator over the weights of the quadrature rule.
- A Gauss-Chebyshev quadrature scheme of the second kind.
- An owning iterator over the node-weight pairs of the quadrature rule.
- An iterator over the node-weight pairs of the quadrature rule.
- An iterator over the nodes of the quadrature rule.
- An iterator over the weights of the quadrature rule.