Vector<T>.GetSlice(Range) Method

Returns a vector whose elements are a subset of the elements of this instance

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public Vector<T> GetSlice(
	Range range
)

Parameters

range  Range
A Range value specifying the range of elements in this instance that will make up the new vector.

Return Value

Vector<T>
A reference to the new Vector<T>.

Exceptions

ArgumentOutOfRangeException The range specified by range is at least partly outside the bounds of this Vector<T>.

See Also