|  | TwoVariableIntegratorIntegrate(DoubleFunctional, Double, Double, OneVariableFunction, OneVariableFunction) Method | 
            Integrates the given two-variable function over the given bounds.
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
 Syntax
Syntaxpublic double Integrate(
	DoubleFunctional function,
	double xLower,
	double xUpper,
	OneVariableFunction yLowerFunction,
	OneVariableFunction yUpperFunction
)
Public Function Integrate ( 
	function As DoubleFunctional,
	xLower As Double,
	xUpper As Double,
	yLowerFunction As OneVariableFunction,
	yUpperFunction As OneVariableFunction
) As Double
public:
double Integrate(
	DoubleFunctional^ function, 
	double xLower, 
	double xUpper, 
	OneVariableFunction^ yLowerFunction, 
	OneVariableFunction^ yUpperFunction
)
member Integrate : 
        function : DoubleFunctional * 
        xLower : float * 
        xUpper : float * 
        yLowerFunction : OneVariableFunction * 
        yUpperFunction : OneVariableFunction -> float Parameters
- function  DoubleFunctional
- A two-variable function to integrate.
- xLower  Double
- The lower x bound.
- xUpper  Double
- The upper x bound.
- yLowerFunction  OneVariableFunction
- The lower y bound as a function of x.
- yUpperFunction  OneVariableFunction
- The uppper y bound as a function of x.
Return Value
DoubleValue of the integral.
 See Also
See Also