Index<T>.GetSlice Method

DefinitionPermalink

Namespace: Numerics.NET.DataAnalysis
Assembly: Numerics.NET (in Numerics.NET.dll) Version: 9.1.0

Overload ListPermalink

GetSlice(Slice) Returns a slice of the current index.
GetSlice(T, T) Returns a slice of the current sorted index.
GetSlice(Int32, Int32, Int32) Returns a slice of the current index.

GetSlice(Slice)Permalink

Returns a slice of the current index.
C#
public virtual Index<T> GetSlice(
	Slice slice
)

Parameters

slice  Slice
A Slice structure that specifies the elements to return.

Return Value

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

ExceptionsPermalink

ArgumentOutOfRangeException

One or more of the indexes in slice is less than zero or greater than or equal to the length of the index.

GetSlice(T, T)Permalink

Returns a slice of the current sorted index.
C#
public virtual Index<T> GetSlice(
	T startKey,
	T endKey
)

Parameters

startKey  T
The first key to be included in the new index.
endKey  T
The zero-based index of the last element in the new index.

Return Value

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

ExceptionsPermalink

KeyNotFoundException

startKey is not a key in the index.

-or-

endKey is not a key in the index.

InvalidOperationException

The index is not sorted.

GetSlice(Int32, Int32, Int32)Permalink

Returns a slice of the current index.
C#
public virtual Index<T> GetSlice(
	int startIndex,
	int endIndex,
	int stride
)

Parameters

startIndex  Int32
The zero-based index of the first element in the new index.
endIndex  Int32
The zero-based index of the last element in the new index.
stride  Int32
The number of items between elements in the new index.

Return Value

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

ExceptionsPermalink

ArgumentOutOfRangeException

startIndex is less than zero or greater than the length of the index.

-or-

endIndex is less than zero or greater than the length of the index.

See AlsoPermalink