Normalize vector in 3D space
Afficher commentaires plus anciens
Hello,
I'm trying to normalize a vector in 3d space into a unit vector
Réponses (2)
X= v./sqrt( sum(v.^2,2) );
John D'Errico
le 26 Jan 2019
V = V./norm(V);
The default for norm is the 2-norm, so what you want.
Catégories
En savoir plus sur Creating and Concatenating Matrices dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!