what mean l2 norm??

8 Ansichten (letzte 30 Tage)
mina
mina am 2 Mär. 2013
what mean l2 norm??
  1 Kommentar
Azzi Abdelmalek
Azzi Abdelmalek am 2 Mär. 2013
Have you read the help?

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Wayne King
Wayne King am 2 Mär. 2013
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 Kommentar
mina
mina am 2 Mär. 2013
thank you so much

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

Albert
Albert am 2 Mär. 2013
The euclidean distance is computed as a l2-norm, indeed.
  1 Kommentar
mina
mina am 2 Mär. 2013
thank you so much

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu MATLAB finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by