How does normr work?
7 ビュー (過去 30 日間)
古いコメントを表示
Yes i realize it returns a matrix with the values having a norm of 1 but how exactly does it do this? My knowledge of statistics is sorely lacking.
Thanks!
0 件のコメント
採用された回答
Jos (10584)
2014 年 1 月 28 日
You can open the m-file (type norm.m) and find something like this:
[mr,mc]=size(m);
if (mc == 1)
n = m ./ abs(m);
else
n=sqrt(ones./(sum((m.*m)')))'*ones(1,mc).*m;
end
That's all ...
0 件のコメント
その他の回答 (0 件)
参考
製品
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!