Gets or sets a value indicating whether precautions
should be taken to deal with singularities on the
integration interval.
Namespace:
Extreme.Mathematics.Calculus
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public bool UseExtrapolation { get; set; }
Public Property UseExtrapolation As Boolean
Get
Set
public:
property bool UseExtrapolation {
bool get ();
void set (bool value);
}
member UseExtrapolation : bool with get, set
Property Value
Type:
Booleantrue if extrapolation is to be used;
if not.
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.
Reference