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