Curve<T>.Integral Method
Gets the definite integral of the curve between the
specified X-coordinates.
Definition
Namespace: Numerics.NET.Curves.Generic
Assembly: Numerics.NET.Generic (in Numerics.NET.Generic.dll) Version: 9.0.1
C#
The definite integral of the curve between lowerBound and upperBound.
Assembly: Numerics.NET.Generic (in Numerics.NET.Generic.dll) Version: 9.0.1
public virtual T Integral(
T lowerBound,
T upperBound
)
Parameters
- lowerBound T
- The lower bound of the integration interval.
- upperBound T
- The upper bound of the integration interval.
Return Value
TThe definite integral of the curve between lowerBound and upperBound.
Remarks
By default, the integral is approximated numerically by using an instance of the AdaptiveIntegrator class.