Constructs a GaussKronrodIntegrator instance that can be used to
integrate a function.
Namespace:
CenterSpace.NMath.Core
Assembly:
NMath (in NMath.dll) Version: 5.1.0.0
Syntax
| C# |
|---|
public GaussKronrodIntegrator(
double tolerance
) |
| Visual Basic (Declaration) |
|---|
Public Sub New ( _
tolerance As Double _
) |
| Visual C++ |
|---|
public:
GaussKronrodIntegrator(
double tolerance
) |
Parameters
- tolerance
- Type: System..::.Double
Functions are integrated using Gauss Kronrod
pairs of increasing order until the relative error is less than or equal
to tolerance, or the maximum order is reached.
See Also