IntegrationRules.GaussLobatto Method

Constructs a new Gauss-Lobatto quadrature rule.

Definition

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

Parameters

n  Int32
The number of points in the quadrature rule.

Return Value

SimpleIntegrationRule
A Gauss-Lobatto quadrature rule of order n.

Remarks

Gauss-Lobatto rules are a closed form of Gaussian quadrature based on Legendre polynomials where the end points of the integration interval are included in the set of nodes.

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

See Also