what mean l2 norm??

what mean l2 norm??

 채택된 답변

Wayne King
Wayne King 2013년 3월 2일

3 개 추천

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개)

Albert
Albert 2013년 3월 2일

0 개 추천

The euclidean distance is computed as a l2-norm, indeed.

카테고리

도움말 센터File Exchange에서 MATLAB에 대해 자세히 알아보기

태그

질문:

2013년 3월 2일

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by