Click or drag to resize

MatrixTSetColumn(Int32, VectorT) Method

Copies the values of the given Vector to the specified 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,
	Vector<T> column
)

Parameters

columnIndex  Int32
The column to copy the values to.
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