what mean l2 norm??
9 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
what mean l2 norm??
Réponse acceptée
Wayne King
le 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))
Plus de réponses (1)
Voir également
Catégories
En savoir plus sur Get Started with MATLAB dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!