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(
Vector lowerBounds,
Vector upperBounds
)
Public Function Integrate (
lowerBounds As Vector,
upperBounds As Vector
) As Double
public:
double Integrate(
Vector^ lowerBounds,
Vector^ upperBounds
)
member Integrate :
lowerBounds : Vector *
upperBounds : Vector -> float
Parameters
- lowerBounds
- Type: Extreme.MathematicsVector
A Vector containing the lower bounds of the integration region. - upperBounds
- Type: Extreme.MathematicsVector
A Vector containing the upper bounds of the integration region.
Return Value
Type:
DoubleAn approximation of the definite integral of
over a region with lower bounds specified by
lowerBounds
and upper bounds specified by
upperBounds.
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: 5.x, 4.x
Reference