Returns the value of the integral from a to b.
Namespace: Imsl.MathAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax public double Eval(
QuadratureIFunction f,
double a,
double b
)
Public Function Eval (
f As QuadratureIFunction,
a As Double,
b As Double
) As Double
public:
double Eval(
QuadratureIFunction^ f,
double a,
double b
)
member Eval :
f : QuadratureIFunction *
a : float *
b : float -> float
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