Click or drag to resize

TwoVariableIntegratorIntegrate(MultiVariableFunction, Double, Double, OneVariableFunction, Double) Method

Note: This API is now obsolete.

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

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
[ObsoleteAttribute("This method is obsolete. Use Integrate( MultiVariableFunction function, double xLower, double xUpper, OneVariableFunction yLowerFunction, double yUpper )")]
public double Integrate(
	MultiVariableFunction function,
	double xLower,
	double xUpper,
	OneVariableFunction yLowerFunction,
	double yUpper
)

Parameters

function  MultiVariableFunction
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.
yUpper  Double
The uppper y bound.

Return Value

Double
Value of the integral.
See Also