Gets or sets the elements of a column of this matrix.
Namespace:
Extreme.Mathematics
Assembly:
Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.1
public Vector<T> this[
Vector<bool> mask,
int column
] { get; set; }
Public Default Property Item (
mask As Vector(Of Boolean),
column As Integer
) As Vector(Of T)
Get
Set
public:
property Vector<T>^ default[Vector<bool>^ mask, int column] {
Vector<T>^ get (Vector<bool>^ mask, int column);
void set (Vector<bool>^ mask, int column, Vector<T>^ value);
}
member Item : Vector<'T> with get, set
Parameters
- mask
- Type: Extreme.MathematicsVectorBoolean
A boolean vector that specifies the elements to select. - column
- Type: SystemInt32
The zero-based index of the column.
Property Value
Type:
VectorTA vector.
This property allows you to directly retrieve or set the elements
of a column of this matrix.
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