WOLFRAM SYSTEM MODELER

norm

Return the p-norm of a matrix

Wolfram Language

In[1]:=
SystemModel["Modelica.Math.Matrices.norm"]
Out[1]:=

Information

This information is part of the Modelica Standard Library maintained by the Modelica Association.

Syntax

Matrices.norm(A);
Matrices.norm(A, p=2);

Description

The function call "Matrices.norm(A)" returns the 2-norm of matrix A, i.e., the largest singular value of A.
The function call "Matrices.norm(A, p)" returns the p-norm of matrix A. The only allowed values for p are

  • "p=1": the largest column sum of A
  • "p=2": the largest singular value of A
  • "p=Modelica.Constants.inf": the largest row sum of A

Note, for any matrices A1, A2 the following inequality holds:

Matrices.norm(A1+A2,p) ≤ Matrices.norm(A1,p) + Matrices.norm(A2,p)

Note, for any matrix A and vector v the following inequality holds:

Vectors.norm(A*v,p) ≤ Matrices.norm(A,p)*Vectors.norm(A,p)

See also

Matrices.frobeniusNorm

Syntax

result = norm(A, p)

Inputs (2)

A

Type: Real[:,:]

Description: Input matrix

p

Default Value: 2

Type: Real

Description: Type of p-norm (only allowed: 1, 2 or Modelica.Constants.inf)

Outputs (1)

result

Default Value: 0.0

Type: Real

Description: p-norm of matrix A