Returns a Variable containing a copy of the observations within the specified range.

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

Syntax

Visual Basic (Declaration)
Public Function CreateSubset ( _
	startIndex As Integer, _
	endIndex As Integer _
) As Variable
C#
public Variable CreateSubset (
	int startIndex,
	int endIndex
)
C++
public:
Variable^ CreateSubset (
	int startIndex, 
	int endIndex
)

Parameters

startIndex (System.Int32)
The zero-based index of the first observation in the range.
endIndex (System.Int32)
The zero-based index of the last observation in the range.

Return Value

A Variable with the same name and of the same type as this instance.