Piecewise Curve.Integral Method
Gets the definite integral of the curve between the
specified X-coordinates.
Definition
Namespace: Extreme.Mathematics.Curves
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
The definite integral of the curve between lowerBound and upperBound.
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
public override 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
All piecewise curves call the [o:IntegrateOnInterval] methods on each interval or part of an interval between lowerBound and upperBound. If an integrator function was not supplied, the integral is evaluated numerically.