SimpleIntegrationRule.WeightFunction Property

Evaluates the weight function associated with the quadrature rule.

Definition

Namespace: Numerics.NET.Calculus
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.0.6
C#
public virtual Func<double, double> WeightFunction { get; }

Return Value

Func<Double, Double>
The value of the weight function at x.

Remarks

Gauss quadrature rules derive much of their power from the fact that specific attributes of the integrand are encapsulated in the calculation of the rule. The weight function is the part of the integrand that is included in the rule.

See Also