Click or drag to resize

QagilIntegration Class

Adaptive integration on semi-infinite interval (-Infinity,b).
Inheritance Hierarchy
SystemObject
  Altaxo.Calc.IntegrationIntegrationBase
    Altaxo.Calc.IntegrationQagilIntegration

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

The QagilIntegration type exposes the following members.

Constructors
 NameDescription
Public methodQagilIntegration Creates an instance of this integration class with a default integration rule and default debug flag setting.
Public methodQagilIntegration(Boolean) Creates an instance of this integration class with a default integration rule and specified debug flag setting.
Public methodQagilIntegration(gsl_integration_rule, Boolean) Creates an instance of this integration class with specified integration rule and specified debug flag setting.
Top
Properties
 NameDescription
Public propertyStatic memberDefaultIntegrationRule Returns the default integration rule used for this class.
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, Int32, Double, Double) Adaptive integration on semi-infinite interval (-Infinity,b) using the integration rule and debug setting given in the constructor.
Public methodIntegrate(FuncDouble, Double, Double, Double, Double, Int32, gsl_integration_rule, Boolean, Double, Double) Adaptive integration on semi-infinite interval (-Infinity,b).
Public methodStatic memberIntegration(FuncDouble, Double, Double, Double, Double, Int32, Double, Double) Adaptive integration on semi-infinite interval (-Infinity,b) using default settings for integration rule and debugging.
Public methodStatic memberIntegration(FuncDouble, Double, Double, Double, Double, Int32, Double, Double, Object) Adaptive integration on semi-infinite interval (-Infinity,b) using default settings for integration rule and debugging.
Public methodStatic memberIntegration(FuncDouble, Double, Double, Double, Double, Int32, gsl_integration_rule, Boolean, Double, Double) Adaptive integration on semi-infinite interval (-Infinity,b).
Public methodStatic memberIntegration(FuncDouble, Double, Double, Double, Double, Int32, gsl_integration_rule, Boolean, Double, Double, Object) Adaptive integration on semi-infinite interval (-Infinity,b).
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 integral of the function f over the semi-infinite interval (-Infinity, b). The integral is mapped onto the semi-open interval (0, 1] using the transformation x = b - (1 - t)/t. It is then integrated using the QAGS algorithm. The normal 21-point Gauss-Kronrod rule of QAGS is replaced by a 15-point rule, because the transformation can generate an integrable singularity at the origin. In this case a lower-order rule is more efficient.

Ref.: Gnu Scientific library reference manual (http://www.gnu.org/software/gsl/)

See Also