Click or drag to resize

MatrixTColumn(Int32, VectorT) Method

Copies a column into to the given Vector.

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public void Column(
	int index,
	Vector<T> result
)

Parameters

index  Int32
The column to copy.
result  VectorT
The Vector to copy the column into.
Exceptions
ExceptionCondition
ArgumentNullExceptionIf the result Vector is .
ArgumentOutOfRangeExceptionIf index is negative, or greater than or equal to the number of columns.
ArgumentOutOfRangeExceptionIf this.Rows != result.Count.
See Also