>> help sdpvar/norm
norm (overloaded)
t = norm(x,P)
The variable t can only be used in convexity preserving
operations such as t<=1, max(t,y)<=1, minimize t etc.
For matrices...
norm(X) models the largest singular value of X, max(svd(X)).
norm(X,2) is the same as norm(X).
norm(X,1) models the 1-norm of X, the largest column sum, max(sum(abs(X))).
norm(X,inf) models the infinity norm of X, the largest row sum, max(sum(abs(X'))).
norm(X,'inf') same as above
norm(X,'fro') models the Frobenius norm, sqrt(sum(diag(X'*X))).
norm(X,'nuc') models the Nuclear norm, sum of singular values.
norm(X,'*') same as above
norm(X,'tv') models the (isotropic) total variation semi-norm
For vectors...
norm(V) = norm(V,2) = standard Euclidean norm.
norm(V,inf) = max(abs(V)).
norm(V,1) = sum(abs(V))