ChebyshevSeries<T>.Integral Method

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

Definition

Namespace: Numerics.NET.Curves.Generic
Assembly: Numerics.NET.Generic (in Numerics.NET.Generic.dll) Version: 9.0.0
C#
public override T Integral(
	T lowerBound,
	T upperBound
)

Parameters

lowerBound  T
The lower bound of the integration interval.
upperBound  T
The upper bound of the integration interval.

Return Value

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

See Also