Computes the integral of the current function over the specified interval.

Namespace:  CenterSpace.NMath.Core
Assembly:  NMath (in NMath.dll) Version: 5.1.0.0

Syntax

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

Parameters

a
Type: System..::.Double
Lower integration limit.
b
Type: System..::.Double
Upper integration limit.

Return Value

The integral over interval.

Remarks

Uses the default numerical integration method.

See Also