Returns the inter-quartile range of the elements of an array.

Namespace: Extreme.Statistics
Assembly: Extreme.Numerics (Extreme.Numerics)

Syntax

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

Parameters

data ()
A Double array.

Return Value

The inter-quartile range of the elements of data.

Exceptions

ExceptionCondition
ArgumentNullExceptiondata is nullNothingnullptr.