Vocabularymath.
matricesInputsOutputsWord descriptionFind the norm (size) of a matrix in 𝑙₂ (
L^2) vector space, usually written ∥・∥₂.
This is the matrix norm when
p=2, and is the square root of the sums of the squares of all the elements of the matrix.
Notes• | This norm is sometimes called the Hilbert-Schmidt norm. |
• | User code should call the generic p-norm instead. |
• | This word is the matrix-specific variant of l2-norm. |
• | This word is the p = 2 variant of matrix-p-norm. |
• | This word is the transpose variant of l1-norm. |
• | This word is intended for use with "flat" (2-dimensional) matrices. |
ExamplesUSING: math.matrices prettyprint ;
{ { 1 1 } { 1 1 } } matrix-l2-norm .
2.0
See alsomatrix-l1-norm,
matrix-l-infinity-norm,
matrix-p-norm,
matrix-p-q-normDefinition