Vector<T>.Item(IEnumerable<Int32>) Property

Gets or sets the elements of the vector with the specified indexes.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public virtual Vector<T> this[
	IEnumerable<int> indexes
] { get; set; }

Parameters

indexes  IEnumerable<Int32>
A sequence of integers.

Return Value

Vector<T>
A Vector<T> containing a sequence of elements of this instance whose index is the corresponding value in indexes.

See Also