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