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

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

Definition

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

Parameters

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

Property Value

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

See Also