IntegrationRules.GaussChebyshevT Method

Constructs a new Chebyshev-Gauss quadrature rule of the first kind.

Definition

Namespace: Numerics.NET.Calculus
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.6
C#
public static SimpleIntegrationRule GaussChebyshevT(
	int n
)

Parameters

n  Int32
The number of points in the quadrature rule.

Return Value

SimpleIntegrationRule
A Chebyshev-Gauss quadrature rule of the first kind of order n.

Remarks

Chebyshev-Gauss rules of the first kind are a form of Gaussian quadrature based on Chebyshev polynomials of the first kind.

The rule is valid over the interval [-1, 1].

See Also