AdaptiveIntegrator.UseExtrapolation Property

Gets or sets a value indicating whether precautions should be taken to deal with singularities on the integration interval.

Definition

Namespace: Extreme.Mathematics.Calculus
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public bool UseExtrapolation { get; set; }

Property Value

Boolean
true if extrapolation is to be used; false if not.

Remarks

If UseExtrapolation is true, the results of the integration are extrapolated using the terms-algorithm, which accelerates the convergence of the integral in the presence of discontinuities and integrable singularities.

Using this option requires some extra resources. It is only recommended for integrands with singularities or discontinuities on the integration interval. It is automatically turned on when singularities are specified using the SetSingularities(Double[]) method, and when integrating over infinite intervals.

See Also