Normalize to unit norm
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I have a variable containing a probability distribution (just an one-dimensional array of values). How can I normalize a to unit norm?
0 commentaires
Réponse acceptée
Wayne King
le 27 Mai 2012
If you want to normalize a vector to have unit L2 norm.
x = randn(100,1);
x = x./norm(x,2);
norm(x,2)
12 commentaires
Oleg Komarov
le 2 Juin 2012
http://en.wikipedia.org/wiki/Norm_%28mathematics%29, Euclidean vs taxicab
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Random Number Generation 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!