what mean l2 norm??
8 次查看(过去 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!