Click or drag to resize

Matrix Norms

Hereinafter the following convention is used:

  • VSmall Greek – small Greek letters are used to denote scalars;

  • VSmall Latin – small Latin letters are used to denote vectors;

  • VCapital Latin – capital Latin letters are used to denote matrices.

Methods

This section describes methods applied to compute matrix norm.

Operation

Description

Performance

L1 norm

(Taxicab norm, Manhattan norm)

Computes the L1 norm of the matrix.

ML 1 Norm

which is simply the maximum absolute column sum of the matrix.

methodL1Norm

L2 norm

(Euclidean norm)

Computes the L2 norm of the matrix.

ML 2 Norm

It is the largest singular value of A or the square root of the largest eigenvalue of A'A. A' denotes the transpose of A.

methodL2Norm

infinity norm

Computes the infinity norm of the matrix.

MInf Norm

which is simply the maximum absolute row sum of the matrix.

methodL2Norm

Frobenius norm

Computes the Frobenius norm of the matrix.

MFNorm

which is simply the maximum absolute row sum of the matrix.

methodFrobeniusNorm

max norm

Computes the max norm (maximal absolute value of matrix' elements).

MMax Norm

methodMaxNorm

Besides there is a common method Norm that allows to specify the desirable matrix norm as a parameter. It computes one of the above described norms of the matrix.

methodNorm(MatrixNormType)

See Also