Returns the kurtosis of the given data set.

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

Syntax

C#
public static double GetKurtosis(
	double[] x
)
Visual Basic (Declaration)
Public Shared Function GetKurtosis ( _
	x As Double() _
) As Double
Visual C++
public:
static double GetKurtosis(
	array<double>^ x
)

Parameters

x
Type: array< System..::.Double >[]()[]
A double array containing the data set whose kurtosis is to be found.

Return Value

A double which specifies the kurtosis of the given data set.

See Also