Gets the definite integral of the curve between the
specified X-coordinates.
Namespace:
Extreme.Mathematics.Curves
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public virtual double Integral(
double lowerBound,
double upperBound
)
Public Overridable Function Integral (
lowerBound As Double,
upperBound As Double
) As Double
public:
virtual double Integral(
double lowerBound,
double upperBound
)
abstract Integral :
lowerBound : float *
upperBound : float -> float
override Integral :
lowerBound : float *
upperBound : float -> float
Parameters
- lowerBound
- Type: SystemDouble
The lower bound of the integration interval. - upperBound
- Type: SystemDouble
The upper bound of the integration interval.
Return Value
Type:
DoubleThe definite integral of the curve between
lowerBound and
upperBound.
By default, the integral is approximated numerically
by using an instance of the
AdaptiveIntegrator class.
Reference