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

Namespace: Extreme.Mathematics.Curves
Assembly:   Extreme.Numerics (in Extreme.Numerics)
Version: 2.1.7017.0

Syntax

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

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

The integral of a Chebyshev series is evaluated directly in terms of the coefficients. No approximation is used.