Class RombergIntegrator approximates integrals of functions over a
given interval using the Romberg method.
Namespace:
CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 5.1.0.0
Syntax
| C# |
|---|
[SerializableAttribute] public class RombergIntegrator : IIntegrator, ICloneable |
| Visual Basic (Declaration) |
|---|
<SerializableAttribute> _ Public Class RombergIntegrator _ Implements IIntegrator, ICloneable |
| Visual C++ |
|---|
[SerializableAttribute] public ref class RombergIntegrator : IIntegrator, ICloneable |
Remarks
Instances of RombergIntegrator can configured to compute
successive Romberg approximations of increasing order until the
estimated error in the approximation is less than a specified tolerance,
or until a maximum order is reached. To compute a Romberg estimate of a
specific order, k, set the MaximumOrder property to k and the
tolerance to a negative value.