Click or drag to resize

MatrixTSetRow(Int32, Int32, Int32, VectorT) Method

Copies the values of the given Vector to the specified sub-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,
	int columnIndex,
	int length,
	Vector<T> row
)

Parameters

rowIndex  Int32
The row to copy the values to.
columnIndex  Int32
The column to start copying to.
length  Int32
The number of elements to copy.
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