about summary refs log tree commit diff
path: root/sourcecodes/bnt-master/KPMstats/mk_unit_norm.m
blob: 99c150a1d2f08ebdab553ea53345948e22bd659a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
function B = mk_unit_norm(A)
% MK_UNIT_NORM Make each column be a unit norm vector
% function B = mk_unit_norm(A)
% 
% We divide each column by its magnitude


[nrows ncols] = size(A);
s = sum(A.^2);
ndx = find(s==0);
s(ndx)=1; 
B = A ./ repmat(sqrt(s), [nrows 1]);