 | RombergIntegratorIntegrate Method (OneVariableFunction, Double, Double) |
Estimates the integral of the given function over the given interval.
Namespace:
CenterSpace.NMath.Core
Assembly:
NMath (in NMath.dll) Version: 7.3
Syntaxpublic double Integrate(
OneVariableFunction function,
double a,
double b
)
Public Function Integrate (
function As OneVariableFunction,
a As Double,
b As Double
) As Double
public:
virtual double Integrate(
OneVariableFunction^ function,
double a,
double b
) sealed
abstract Integrate :
function : OneVariableFunction *
a : float *
b : float -> float
override Integrate :
function : OneVariableFunction *
a : float *
b : float -> float
Parameters
- function
- Type: CenterSpace.NMath.CoreOneVariableFunction
[Missing <param name="function"/> documentation for "M:CenterSpace.NMath.Core.RombergIntegrator.Integrate(CenterSpace.NMath.Core.OneVariableFunction,System.Double,System.Double)"]
- a
- Type: SystemDouble
The lower limit of integration. - b
- Type: SystemDouble
The upper limit of integration.
Return Value
Type:
DoubleA Romberg estimate of the integral over the interval.
Implements
IIntegratorIntegrate(OneVariableFunction, Double, Double)
See Also