Click or drag to resize

RombergIntegrator(Double, Int32) Constructor

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

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

Parameters

tolerance  Double
The error tolerance.
maximumOrder  Int32
The maximum order.
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