Numerically integrates a function of one variable.
Namespace: Extreme.Mathematics.Calculus
Assembly: Extreme.Numerics (Extreme.Numerics)
Syntax
| Visual Basic (Declaration) |
|---|
Public Overrides Function Integrate As Double |
| C# |
|---|
public override double Integrate () |
| C++ |
|---|
public: virtual double Integrate () override |
Return Value
An approximation of the definite integral of integrand from lowerBound to upperBound.
Remarks
This method performs the actual numerical
integration. After this method returns, inspect the
AlgorithmStatus property to verify
that the algorithm terminated normally.
Depending on the nature of the integrand and the desired accuracy, this operation may take a long time to complete.