Gets the definite integral of the curve between the specified X-coordinates.

Namespace: Extreme.Mathematics.Curves
Assembly: Extreme.Numerics (Extreme.Numerics)

Syntax

Visual Basic (Declaration)
Public Overridable Function Integral ( _
	lowerBound As Double, _
	upperBound As Double _
) As Double
C#
public virtual double Integral (
	double lowerBound,
	double upperBound
)
C++
public:
virtual double Integral (
	double lowerBound, 
	double upperBound
)

Parameters

lowerBound (System.Double)
The lower bound of the integration interval.
upperBound (System.Double)
The upper bound of the integration interval.

Return Value

The 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.