T - Type of the field elements.public class SymmetricFieldGaussIntegrator<T extends CalculusFieldElement<T>> extends FieldGaussIntegrator<T>
integrate
method assuming that the integral is symmetric about 0.
This allows to reduce numerical errors.| Constructor and Description |
|---|
SymmetricFieldGaussIntegrator(Pair<T[],T[]> pointsAndWeights)
Creates an integrator from the given pair of points (first element of
the pair) and weights (second element of the pair.
|
SymmetricFieldGaussIntegrator(T[] points,
T[] weights)
Creates an integrator from the given
points and weights. |
| Modifier and Type | Method and Description |
|---|---|
T |
integrate(CalculusFieldUnivariateFunction<T> f)
Returns an estimate of the integral of
f(x) * w(x),
where w is a weight function that depends on the actual
flavor of the Gauss integration scheme. |
getNumberOfPoints, getPoint, getWeightpublic SymmetricFieldGaussIntegrator(T[] points, T[] weights) throws MathIllegalArgumentException
points and weights.
The integration interval is defined by the first and last value of
points which must be sorted in increasing order.points - Integration points.weights - Weights of the corresponding integration nodes.MathIllegalArgumentException - if the points are not
sorted in increasing order.MathIllegalArgumentException - if points and weights don't have the same lengthpublic SymmetricFieldGaussIntegrator(Pair<T[],T[]> pointsAndWeights) throws MathIllegalArgumentException
pointsAndWeights - Integration points and corresponding weights.MathIllegalArgumentException - if the points are not
sorted in increasing order.SymmetricFieldGaussIntegrator(CalculusFieldElement[], CalculusFieldElement[])public T integrate(CalculusFieldUnivariateFunction<T> f)
f(x) * w(x),
where w is a weight function that depends on the actual
flavor of the Gauss integration scheme.
The algorithm uses the points and associated weights, as passed
to the constructor.integrate in class FieldGaussIntegrator<T extends CalculusFieldElement<T>>f - Function to integrate.Copyright © 2016-2022 CS GROUP. All rights reserved.