Click or drag to resize

MatrixMathSetColumn(IReadOnlyListDouble, IMatrixDouble, Int32) Method

Sets one row in the destination matrix equal to the vector provided by src.

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static void SetColumn(
	IReadOnlyList<double> src,
	IMatrix<double> dest,
	int destColumn
)

Parameters

src  IReadOnlyListDouble
The source vector. Must be of same length as the number of columns of the destination matrix.
dest  IMatrixDouble
The destination matrix where to copy the horizontal vector into.
destColumn  Int32
The row in the destination matrix where to copy the vector to.
See Also