Numerical Integrator ND Constructor
Definition
Namespace: Numerics.NET.Calculus
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.2
Overload List
Numerical | Constructs a new NumericalIntegrator2D object. |
Numerical | Constructs a new NumericalIntegrator2D object. |
NumericalIntegratorND
Constructs a new NumericalIntegrator2D object.
protected NumericalIntegratorND()
NumericalIntegratorND(Func<Vector<Double>, Double>, Vector<Double>, Vector<Double>)
Constructs a new NumericalIntegrator2D object.
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.