필터 지우기
필터 지우기

what mean l2 norm??

조회 수: 8 (최근 30일)
mina
mina 2013년 3월 2일
what mean l2 norm??
  댓글 수: 1
Azzi Abdelmalek
Azzi Abdelmalek 2013년 3월 2일
Have you read the help?

댓글을 달려면 로그인하십시오.

채택된 답변

Wayne King
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
mina
mina 2013년 3월 2일
thank you so much

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Albert
Albert 2013년 3월 2일
The euclidean distance is computed as a l2-norm, indeed.
  댓글 수: 1
mina
mina 2013년 3월 2일
thank you so much

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Linear Algebra에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by