Click or drag to resize

QawcIntegration Class

Adaptive integration for Cauchy principal values.
Inheritance Hierarchy
SystemObject
  Altaxo.Calc.IntegrationIntegrationBase
    Altaxo.Calc.IntegrationQawcIntegration

Namespace: Altaxo.Calc.Integration
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3448.0 (4.8.3448.0)
Syntax
C#
public class QawcIntegration : IntegrationBase

The QawcIntegration type exposes the following members.

Constructors
 NameDescription
Public methodQawcIntegration Creates an instance of this integration class with a default integration rule and default debug flag setting.
Public methodQawcIntegration(Boolean) Creates an instance of this integration class with the specified debug flag setting.
Top
Methods
 NameDescription
Public methodEqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
Protected methodFinalizeAllows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object)
Public methodGetHashCodeServes as the default hash function.
(Inherited from Object)
Public methodGetTypeGets the Type of the current instance.
(Inherited from Object)
Public methodIntegrate(FuncDouble, Double, Double, Double, Double, Double, Double, Int32, Double, Double) Compute the Cauchy principal value of the integral of f over the interval (a, b) with a singularity at c using the instance's debug setting.
Public methodIntegrate(FuncDouble, Double, Double, Double, Double, Double, Double, Int32, Boolean, Double, Double) Compute the Cauchy principal value of the integral of f over the interval (a, b) with a singularity at c. This overload allows specifying the debug flag for the call.
Public methodStatic memberIntegration(FuncDouble, Double, Double, Double, Double, Double, Double, Int32, Double, Double) Static convenience overload that computes the Cauchy principal value using a temporary storage created internally. This overload uses the instance default debug setting.
Public methodStatic memberIntegration(FuncDouble, Double, Double, Double, Double, Double, Double, Int32, Boolean, Double, Double) Static convenience overload that computes the Cauchy principal value using a temporary storage created internally.
Public methodStatic memberIntegration(FuncDouble, Double, Double, Double, Double, Double, Double, Int32, Double, Double, Object) Static helper that computes the Cauchy principal value of the integral of f over (a, b) with a singularity at c, using a supplied temporary storage object to reuse the algorithm instance. This overload uses the instance default debug setting.
Public methodStatic memberIntegration(FuncDouble, Double, Double, Double, Double, Double, Double, Int32, Boolean, Double, Double, Object) Static helper that computes the Cauchy principal value of the integral of f over (a, b) with a singularity at c, using a supplied temporary storage object to reuse the algorithm instance.
Protected methodMemberwiseCloneCreates a shallow copy of the current Object.
(Inherited from Object)
Public methodToStringReturns a string that represents the current object.
(Inherited from Object)
Top
Remarks
This function computes the Cauchy principal value of the integral of f over (a, b), with a singularity at c. The adaptive bisection algorithm of QAG is used, with modifications to ensure that subdivisions do not occur at the singular point x = c. When a subinterval contains the point x = c or is close to it then a special 25-point modified Clenshaw-Curtis rule is used to control the singularity. Further away from the singularity the algorithm uses an ordinary 15-point Gauss-Kronrod integration rule.

Ref.: GNU Scientific Library reference manual (http://www.gnu.org/software/gsl/)

See Also