Click or drag to resize

MatrixTSetRow(Int32, VectorT) Method

Copies the values of the given Vector to the specified row.

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

Parameters

rowIndex  Int32
The row to copy the values to.
row  VectorT
The vector to copy the values from.
Exceptions
ExceptionCondition
ArgumentNullExceptionIf row is .
ArgumentOutOfRangeExceptionIf rowIndex is less than zero, or greater than or equal to the number of rows.
ArgumentExceptionIf the size of row does not equal the number of columns of this Matrix.
See Also