MatrixTNormalizeColumns Method |
Normalizes all column vectors to a unit p-norm.
Typical values for p are 1.0 (L1, Manhattan norm), 2.0 (L2, Euclidean norm) and positive infinity (infinity norm)
Namespace: Altaxo.Calc.LinearAlgebraAssembly: AltaxoCore (in AltaxoCore.dll) Version: 4.8.3572.0 (4.8.3572.0)
Syntaxpublic abstract Matrix<T> NormalizeColumns(
double norm
)
Parameters
- norm Double
- The p value of the norm to use for normalization.
Return Value
MatrixTA matrix whose columns are normalized to the specified p-norm.
See Also