Click or drag to resize

TwoVariableIntegratorIntegrate(MultiVariableFunction, Double, Double, Double, 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( DoubleFunctional function, double xLower, double xUpper, double yLower, double yUpper )")]
public double Integrate(
	MultiVariableFunction function,
	double xLower,
	double xUpper,
	double yLower,
	double yUpper
)

Parameters

function  MultiVariableFunction
A two-variable function to integrate.
xLower  Double
The lower x bound.
xUpper  Double
The upper x bound.
yLower  Double
The lower y bound.
yUpper  Double
The uppper y bound.

Return Value

Double
Value of the integral.
See Also