RowCollection<T>.Item Property

Gets or sets the components of the specified row in this RowCollection<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 Rows collection this instance represents.

Setting this value sets the components of the specified row equal to the components of the value vector.

Exceptions

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

See Also