Adaptive Integrator<T> Constructor
Definition
Namespace: Numerics.NET.Calculus.Generic
Assembly: Numerics.NET.Generic (in Numerics.NET.Generic.dll) Version: 9.0.1
Assembly: Numerics.NET.Generic (in Numerics.NET.Generic.dll) Version: 9.0.1
Overload List
Adaptive | Constructs a new AdaptiveIntegrator<T> object. |
Adaptive | Constructs a new AdaptiveIntegrator<T> object. |
Adaptive | Constructs a new AdaptiveIntegrator<T> object. |
Adaptive | Constructs a new AdaptiveIntegrator<T> object. |
Adaptive | Constructs a new AdaptiveIntegrator<T> object. |
AdaptiveIntegrator<T>
Constructs a new AdaptiveIntegrator<T> object.
public AdaptiveIntegrator()
AdaptiveIntegrator<T>(Boolean)
Constructs a new AdaptiveIntegrator<T> object.
public AdaptiveIntegrator(
bool useExtrapolation
)
Parameters
- useExtrapolation Boolean
- If true, special operations are performed to speed convergence in case of singularities inside the integration interval or at the end points. If false, no special operations are performed.
AdaptiveIntegrator<T>(Func<T, T>, T[])
Constructs a new AdaptiveIntegrator<T> object.
public AdaptiveIntegrator(
Func<T, T> integrand,
T[] singularities
)
Parameters
AdaptiveIntegrator<T>(IntegrationRule<T>, Boolean)
Constructs a new AdaptiveIntegrator<T> object.
public AdaptiveIntegrator(
IntegrationRule<T> integrationRule,
bool useExtrapolation
)
Parameters
- integrationRule IntegrationRule<T>
- useExtrapolation Boolean
- If true, special operations are performed to speed convergence in case of singularities inside the integration interval or at the end points. If false, no special operations are performed.
AdaptiveIntegrator<T>(Func<T, T>, T, T)
Constructs a new AdaptiveIntegrator<T> object.
public AdaptiveIntegrator(
Func<T, T> integrand,
T lowerBound,
T upperBound
)