what mean l2 norm??
2 ビュー (過去 30 日間)
古いコメントを表示
what mean l2 norm??
採用された回答
Wayne King
2013 年 3 月 2 日
The l2 norm of a vector is the square root of the sum of the absolute values squared
X = randn(8,1);
norm(X,2)
The above is equal to
sqrt(sum(abs(X).^2))
その他の回答 (1 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!