Numerically integrates a function of one variable.

Namespace: Extreme.Mathematics.Calculus
Assembly: Extreme.Numerics (Extreme.Numerics)

Syntax

Visual Basic (Declaration)
Public Function Integrate ( _
	lowerBound As Double, _
	upperBound As Double _
) As Double
C#
public double Integrate (
	double lowerBound,
	double upperBound
)
C++
public:
double Integrate (
	double lowerBound, 
	double upperBound
)

Parameters

lowerBound (System.Double)
The lower limit of the integration interval.
upperBound (System.Double)
The upper limit of the integration interval.

Return Value

An approximation of the definite integral of the Integrand from lowerBound to upperBound.

Remarks

This method performs the actual numerical integration. After this method returns, inspect the Status property to verify that the algorithm terminated normally.