Click or drag to resize

MatrixTSetColumn(Int32, T) Method

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

Parameters

columnIndex  Int32
The column to copy the values to.
column  T
The array 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.
ArgumentExceptionIf the size of column does not equal the number of rows of this Matrix.
See Also