MatrixMathNormalizeOneColumn Method |
Normalizes the column col of a matrix to unit length.
Namespace: Altaxo.Calc.LinearAlgebraAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3179.0 (4.8.3179.0)
Syntax 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
DoubleSquare root of the sum of squares of the column, i.e. the original length of the column vector before normalization.
See Also