Click or drag to resize

IIntegratorIntegrate Method

Integrates the given function within the given interval.

Namespace: CenterSpace.NMath.Core
Assembly: NMath (in NMath.dll) Version: 7.4
Syntax
double Integrate(
	OneVariableFunction function,
	double a,
	double b
)

Parameters

function  OneVariableFunction
The function to integrate.
a  Double
The lower limit of integration.
b  Double
The upper limit of integration.

Return Value

Double
The integral of function over the interval from a to b.
See Also