what mean l2 norm??
8 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
what mean l2 norm??
1 Kommentar
Akzeptierte Antwort
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))
Weitere Antworten (1)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!