Returns a NumericalVariable whose observations span the specified range.

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

Syntax

Visual Basic (Declaration)
Public Shared Function CreateRange ( _
	minValue As Integer, _
	maxValue As Integer _
) As NumericalVariable
C#
public static NumericalVariable CreateRange (
	int minValue,
	int maxValue
)
C++
public:
static NumericalVariable^ CreateRange (
	int minValue, 
	int maxValue
)

Parameters

minValue (System.Int32)
The lowest value.
maxValue (System.Int32)
The (exclusive) highest value.

Return Value

A NumericalVariable of length maxValue whose observations are the integers from minValue up to but not including maxValue.

If maxValue is less than minValue, then the observations count down from minValue.