Click or drag to resize

RombergIntegrator(Int32) Constructor

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

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

Parameters

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