NumericalIntegratorND Constructor

Definition

Namespace: Extreme.Mathematics.Calculus
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23

Overload List

NumericalIntegratorND

Constructs a new NumericalIntegrator2D object.
C#
protected NumericalIntegratorND()

NumericalIntegratorND(Func<Vector<Double>, Double>, Vector<Double>, Vector<Double>)

Constructs a new NumericalIntegrator2D object.
C#
protected NumericalIntegratorND(
	Func<Vector<double>, double> integrand,
	Vector<double> lowerBounds,
	Vector<double> upperBounds
)

Parameters

integrand  Func<Vector<Double>, Double>
A multivariate function that specifies the function to integrate.
lowerBounds  Vector<Double>
A vector containing the lower bounds of the integration region.
upperBounds  Vector<Double>
A vector containing the upper bounds of the integration region.

Return Value

An approximation of the definite integral of integrand over a region with lower bounds specified by lowerBounds and upper bounds specified by upperBounds.

Remarks

This method performs the actual numerical integration. After this method returns, inspect the Status property to verify that the algorithm terminated normally.

See Also