Numerical Integrator<T> Constructor
Definition
Namespace: Numerics.NET.Calculus.Generic
Assembly: Numerics.NET.Generic (in Numerics.NET.Generic.dll) Version: 9.0.1
Assembly: Numerics.NET.Generic (in Numerics.NET.Generic.dll) Version: 9.0.1
Overload List
Numerical | Constructs a new NumericalIntegrator<T> object. |
Numerical | Constructs a new NumericalIntegrator<T> object. |
NumericalIntegrator<T>
Constructs a new NumericalIntegrator<T> object.
protected NumericalIntegrator()
NumericalIntegrator<T>(Func<T, T>, T, T)
Constructs a new NumericalIntegrator<T> object.
protected NumericalIntegrator(
Func<T, T> integrand,
T lowerBound,
T upperBound
)
Parameters
- integrand Func<T, T>
- A delegate that represents a function of one variable that specifies the function to integrate.
- lowerBound T
- The lower limit of the integration interval.
- upperBound T
- The upper limit of the integration interval.
Return Value
An approximation of the definite integral of integrand from lowerBound to upperBound.Remarks
This method performs the actual numerical integration. After this method returns, inspect the Status property to verify that the algorithm terminated normally.