Index<T>.GetSubset Method

Returns a subset of the current index.

Definition

Namespace: Extreme.DataAnalysis
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public virtual Index<T> GetSubset(
	Subset subset
)

Parameters

subset  Subset
A Subset structure that specifies the elements to return.

Return Value

Index<T>
A new index of the same type.

Exceptions

ArgumentNullException

subset is null.

DimensionMismatchException

The original length of subset does not equal the length of the index.

See Also