<< CL_matSort Utilities CL_path >>

CelestLab >> Utilities > CL_norm

CL_norm

Norm of column vectors

Calling Sequence

[u_norm] = CL_norm(u)

Description

Parameters

u:

Matrix (considered as a set of column vectors) (PxNxK)

u_norm:

Matrix (norms of column vectors) (1xNxK)

See also

Authors

Examples

u = [1,2;3,4]
CL_norm(u)

u = rand(2,3,4)
CL_norm(u)
<< CL_matSort Utilities CL_path >>