Numerically integrates a function of one variable.
Namespace:
Extreme.Mathematics.Calculus
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public double Integrate(
double lowerBound,
double upperBound,
ParallelOptions parallelOptions
)
Public Function Integrate (
lowerBound As Double,
upperBound As Double,
parallelOptions As ParallelOptions
) As Double
public:
double Integrate(
double lowerBound,
double upperBound,
ParallelOptions^ parallelOptions
)
member Integrate :
lowerBound : float *
upperBound : float *
parallelOptions : ParallelOptions -> float
Parameters
- lowerBound
- Type: SystemDouble
The lower limit of the integration
interval. - upperBound
- Type: SystemDouble
The upper limit of the integration
interval. - parallelOptions
- Type: System.Threading.TasksParallelOptions
The configuration for the parallel behavior of the integration.
Return Value
Type:
DoubleAn approximation of the definite integral of the
Integrand from
lowerBound to
upperBound.
This method performs the actual numerical integration. After
this method returns, inspect the Status
property to verify that the algorithm terminated normally.
Reference