SimpleIntegrationRule.WeightFunction Property

Gets a delegate that Evaluates the weight function associated with the quadrature rule.

Definition

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

Property Value

Func<Double, Double>
A delegate that evaluates the value of the weight function associated with the quadrature rule over a standard interval.

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