Click or drag to resize
QuadratureEval Method
Returns the value of the integral from a to b.

Namespace: Imsl.Math
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax
public double Eval(
	QuadratureIFunction f,
	double a,
	double b
)

Parameters

f
Type: Imsl.MathQuadratureIFunction
The function to be integrated.
a
Type: SystemDouble
A double specifying the lower limit of integration.
b
Type: SystemDouble
A double specifying the upper limit of integration, either or both of a and b can be Double.POSITIVE_INFINITY or Double.NEGATIVE_INFINITY.

Return Value

Type: Double
A double specifying the integral value from a to b.
See Also