Gets or sets the elements of a row of this matrix.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public Vector<T> this[
Index row,
Range columnRange
] { get; set; }
Public Default Property Item (
row As Index,
columnRange As Range
) As Vector(Of T)
Get
Set
public:
property Vector<T>^ default[Index row, Range columnRange] {
Vector<T>^ get (Index row, Range columnRange);
void set (Index row, Range columnRange, Vector<T>^ value);
}
member Item : Vector<'T> with get, set
Parameters
- row
- Type: SystemIndex
The zero-based index of the row. - columnRange
- Type: SystemRange
A Range value
that specifies the range of elements in the row.
Property Value
Type:
VectorTA vector.
This property allows you to directly retrieve or set the elements
of a row of this instance.
Getting the value of this property returns a vector that
points to the specified elements of this instance.
Setting the value of this property sets the specified elements
to the values in the vector that is provided.
Reference