Gets or sets the elements of a matrix with the specified row indexes and column range.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public Matrix<T> this[
IEnumerable<int> rowIndexes,
Range columnRange
] { get; set; }
Public Default Property Item (
rowIndexes As IEnumerable(Of Integer),
columnRange As Range
) As Matrix(Of T)
Get
Set
public:
property Matrix<T>^ default[IEnumerable<int>^ rowIndexes, Range columnRange] {
Matrix<T>^ get (IEnumerable<int>^ rowIndexes, Range columnRange);
void set (IEnumerable<int>^ rowIndexes, Range columnRange, Matrix<T>^ value);
}
member Item : Matrix<'T> with get, set
Parameters
- rowIndexes
- Type: System.Collections.GenericIEnumerableInt32
A sequence of integers. - columnRange
- Type: SystemRange
A Range value that specifies
the range of elements that are to make up the new vector.
Property Value
Type:
MatrixTA
MatrixT that contains the elements of the matrix with
row indexes in
rowIndexes and column indexes in
columnRange.
Reference