IntegrationRules.GaussChebyshevU Method

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

Definition

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

Parameters

n  Int32
The number of points in the quadrature rule.

Return Value

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

Remarks

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

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

See Also