The RombergIntegrator type exposes the following members.

Constructors

  NameDescription
RombergIntegratorOverloaded.

Methods

  NameDescription
Clone
Creates a deep copy of this integrator.
Equals
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
GetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
GetType
Gets the Type of the current instance.
(Inherited from Object.)
Integrate
Estimates the integral of the given function over the given interval.
ToString
Returns a String that represents the current Object.
(Inherited from Object.)

Properties

  NameDescription
DefaultMaxOrder
Gets and sets the default maximum order for instances of RombergIntegrator.
DefaultTolerance
Gets and dets the default error tolerance for instances of RombergIntegrator.
MaximumOrder
Gets and sets the maximum order used in computing Romberg estimates.
Order
Gets the order of the Romberg approximation.
RombergErrorEstimate
Gets an estimate of the error in the Romberg estimate of the integral just computed.
RombergEstimate
Gets the Romberg estimate for the integral.
SimpsonEstimate
Gets the estimate for the integral yielded by the compound Simpson's rule where the number of panels, or subintervals, is equal to the order of the Romberg estimate.
Tableau
Gets a matrix of successive approximations computed while computing a Romberg estimate.
Tolerance
Gets and sets the error tolerance used in computing Romberg estimates.
ToleranceMet
Returns true if the Romberg estimate just computed stopped because the error tolerance was reached; otherwise, false.
TrapezoidEstimate
Gets the estimate for the integral yielded by the compound trapezoid rule where the number of panels, or subintervals, is equal to the order of the Romberg estimate.

See Also