Click or drag to resize

MatrixTSetColumn(Int32, Int32, Int32, VectorT) Method

Copies the values of the given Vector to the specified sub-column.

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

Parameters

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