Click or drag to resize

MatrixMathNormalizeOneColumn Method

Normalizes the column col of a matrix to unit length.

Namespace: Altaxo.Calc.LinearAlgebra
Assembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax
C#
public static double NormalizeOneColumn(
	IMatrix<double> a,
	int col
)

Parameters

a  IMatrixDouble
The matrix for which the column col is normalized.
col  Int32
The number of the column which should be normalized.

Return Value

Double
Square root of the sum of squares of the column, i.e. the original length of the column vector before normalization.
See Also