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(
ParallelOptions parallelOptions
)
Public Function Integrate (
parallelOptions As ParallelOptions
) As Double
public:
double Integrate(
ParallelOptions^ parallelOptions
)
member Integrate :
parallelOptions : ParallelOptions -> float
Parameters
- parallelOptions
- Type: System.Threading.TasksParallelOptions
Return Value
Type:
DoubleAn approximation of the definite integral for the integrator's current
Integrand between
LowerBound and
UpperBound.
.
The configuration for the parallel behavior of the integration.
This method performs the actual numerical integration using the Integrand
and integration interval specified by the LowerBound and UpperBound
properties. After this method returns, inspect the Status
property to verify that the algorithm terminated normally.
Reference