what mean l2 norm??
9 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
what mean l2 norm??
Risposta accettata
Wayne King
il 2 Mar 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))
Più risposte (1)
Vedere anche
Categorie
Scopri di più su Get Started with MATLAB in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!