Integrates the given two-variable function over the given bounds.

Namespace:  CenterSpace.NMath.Analysis
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

C#
public double Integrate(
	MultiVariableFunction function,
	double xLower,
	double xUpper,
	double yLower,
	double yUpper
)
Visual Basic (Declaration)
Public Function Integrate ( _
	function As MultiVariableFunction, _
	xLower As Double, _
	xUpper As Double, _
	yLower As Double, _
	yUpper As Double _
) As Double
Visual C++
public:
double Integrate(
	MultiVariableFunction^ function, 
	double xLower, 
	double xUpper, 
	double yLower, 
	double yUpper
)

Parameters

function
Type: CenterSpace.NMath.Analysis..::.MultiVariableFunction
A two-variable function to integrate.
xLower
Type: System..::.Double
The lower x bound.
xUpper
Type: System..::.Double
The upper x bound.
yLower
Type: System..::.Double
The lower y bound.
yUpper
Type: System..::.Double
The uppper y bound.

Return Value

See Also