Returns the value of an integral of the spline.

Namespace: Imsl.Math
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.0.0

Syntax

C#
public virtual double Integral(
	double a,
	double b
)
Visual Basic (Declaration)
Public Overridable Function Integral ( _
	a As Double, _
	b As Double _
) As Double
Visual C++
public:
virtual double Integral(
	double a, 
	double b
)

Parameters

a
Type: System..::.Double
A double specifying the lower limit of integration.
b
Type: System..::.Double
A double specifying the upper limit of integration.

Return Value

A double, the integral of the spline from a to b.

See Also