Click or drag to resize

TwoVariableIntegratorIntegrate(DoubleFunctional, Double, Double, Double, Double) Method

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

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
public double Integrate(
	DoubleFunctional function,
	double xLower,
	double xUpper,
	double yLower,
	double yUpper
)

Parameters

function  DoubleFunctional
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