Click or drag to resize

MatrixTRow(Int32, VectorT) Method

Copies a row into to the given Vector.

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public void Row(
	int index,
	Vector<T> result
)

Parameters

index  Int32
The row to copy.
result  VectorT
The Vector to copy the row into.
Exceptions
ExceptionCondition
ArgumentNullExceptionIf the result vector is .
ArgumentOutOfRangeExceptionIf index is negative, or greater than or equal to the number of rows.
ArgumentOutOfRangeExceptionIf this.Columns != result.Count.
See Also