Click or drag to resize

MatrixMathSetColumn(IROMatrixDouble, IMatrixDouble, Int32) Method

Sets one column in the destination matrix equal to the vertical vector provided by src matix.

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

Parameters

src  IROMatrixDouble
The source matrix. Must be a vertical vector (cols=1) with the same number of rows than the destination matrix.
dest  IMatrixDouble
The destination matrix where to copy the vertical vector into.
col  Int32
The column in the destination matrix where to copy the vector to.
See Also