Gets or sets the components of the specified column in this
ColumnCollection.
Namespace: Extreme.Mathematics.LinearAlgebra
Assembly: Extreme.Numerics (Extreme.Numerics)
Syntax
| Visual Basic (Declaration) |
|---|
Public Property Item ( _ index As Integer _ ) As Vector |
| C# |
|---|
public Vector Item [ int index ] { get; set; } |
| C++ |
|---|
public: Vector^ Item { Vector^ get (int index); void set (, Vector^ value); } |
Parameters
- index (System.Int32)
- The zero-based index of the column.
Value
A Vector.
Remarks
The specific type of Vector returned depends
on the matrix whose Columns collection this
instance represents.
Setting this value sets the components of the specified column equal to the components of the value vector.
Exceptions
| Exception | Condition |
|---|---|
| ArgumentOutOfRangeException | index is less than zero or greater than the number of columns in the matrix. |
| ArgumentNullException | value is nullNothingnullptr. |