Class GaussKronrodIntegrator calculates an approximation of the integral of a function over a finite interval using Gauss-Kronrod rules.

Namespace:  CenterSpace.NMath.Core
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
[SerializableAttribute]
public class GaussKronrodIntegrator : GaussKronrod87Integrator
Visual Basic (Declaration)
<SerializableAttribute> _
Public Class GaussKronrodIntegrator _
	Inherits GaussKronrod87Integrator
Visual C++
[SerializableAttribute]
public ref class GaussKronrodIntegrator : public GaussKronrod87Integrator

Remarks

Integration approximation proceeds by using Gauss-Kronrod rules with increasing number of subdivisions. Approximation ends when the estimated error is less than a specified tolerance or when the maximum number of subdivisions is reached.

Inheritance Hierarchy

See Also