Click or drag to resize

MatrixTSetRow(Int32, T) Method

Copies the values of the given array 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,
	T[] row
)

Parameters

rowIndex  Int32
The row to copy the values to.
row  T
The array 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