Curve.Integral Method
Gets the definite integral of the curve between the
specified X-coordinates.
Definition
Namespace: Numerics.NET.Curves
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
C#
The definite integral of the curve between lowerBound and upperBound.
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.3
public virtual double Integral(
double lowerBound,
double upperBound
)
Parameters
- lowerBound Double
- The lower bound of the integration interval.
- upperBound Double
- The upper bound of the integration interval.
Return Value
DoubleThe 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.