Matrix<T>.Item(IEnumerable<Int32>, Range) Property

Gets or sets the elements of a matrix with the specified row indexes and column range.

Definition

Namespace: Extreme.Mathematics
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public Matrix<T> this[
	IEnumerable<int> rowIndexes,
	Range columnRange
] { get; set; }

Parameters

rowIndexes  IEnumerable<Int32>
A sequence of integers.
columnRange  Range
A Range value that specifies the range of elements that are to make up the new vector.

Property Value

Matrix<T>
A Matrix<T> that contains the elements of the matrix with row indexes in rowIndexes and column indexes in columnRange.

See Also