| Neural Network Toolbox | Search  Help Desk |
| normc | Examples See Also |
Normalize the columns of a matrix
normc(M)normc
(M) normalizes the columns of M to a length of 1.
m = [1 2; 3 4];
normc(m)
ans =
0.3162 0.4472
0.9487 0.8944
normr