Click or drag to resize

RombergIntegrator(Double) Constructor

Constructs a RombergIntegrator instance with the given error tolerance and default maximum order.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public RombergIntegrator(
	double tolerance
)

Parameters

tolerance  Double
The error tolerance.
Remarks
Iteration stops when either the estimated error is less than the tolerance, or the the maximum order is reached. To obtain a Romberg estimate of a specific order, k, set the tolerance to a negative value and the maximum order to k.
See Also