ColumnCollection<T>.Item Property

Gets or sets the components of the specified column in this ColumnCollection<T>.

Definition

Namespace: Extreme.Mathematics.LinearAlgebra
Assembly: Extreme.Numerics (in Extreme.Numerics.dll) Version: 8.1.23
C#
public Vector<T> this[
	int index
] { get; set; }

Parameters

index  Int32
The zero-based index of the column.

Property Value

Vector<T>
A Vector<T>.

Remarks

The specific type of Vector<T> 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

ArgumentOutOfRangeExceptionindex is less than zero or greater than the number of columns in the matrix.
ArgumentNullExceptionvalue is null.

See Also