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

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

Definition

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

Parameters

rowIndexes  IEnumerable<Int32>
A sequence of integers.
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 rowIndexes and column indexes in columnIndexes.

See Also