Numerically integrates a function of one variable.
Namespace: Extreme.Mathematics.CalculusAssembly: Extreme.Numerics.Net40 (in Extreme.Numerics.Net40.dll) Version: 6.0.16073.0 (6.0.16312.0)
public double Integrate(
double xLowerBound,
double xUpperBound,
double yLowerBound,
double yUpperBound
)
Public Function Integrate (
xLowerBound As Double,
xUpperBound As Double,
yLowerBound As Double,
yUpperBound As Double
) As Double
public:
double Integrate(
double xLowerBound,
double xUpperBound,
double yLowerBound,
double yUpperBound
)
member Integrate :
xLowerBound : float *
xUpperBound : float *
yLowerBound : float *
yUpperBound : float -> float
Parameters
- xLowerBound
- Type: SystemDouble
The lower limit of the integration region in the X direction. - xUpperBound
- Type: SystemDouble
The upper limit of the integration region in the X direction. - yLowerBound
- Type: SystemDouble
The lower limit of the integration region in the Y direction. - yUpperBound
- Type: SystemDouble
The upper limit of the integration region in the Y direction.
Return Value
Type:
DoubleAn approximation of the definite integral of the
Integrand in the region bounded
by
xLowerBound and
xUpperBound in the X direction,
and by
yLowerBound and
yUpperBound in the Y direction.
This method performs the actual numerical integration. After
this method returns, inspect the Status
property to verify that the algorithm terminated normally.
Numerical Libraries
Supported in: 6.0, 5.x, 4.x
Reference