Normalize vector in 3D space
Mostrar comentarios más antiguos
Hello,
I'm trying to normalize a vector in 3d space into a unit vector
Respuestas (2)
X= v./sqrt( sum(v.^2,2) );
John D'Errico
el 26 de En. de 2019
V = V./norm(V);
The default for norm is the 2-norm, so what you want.
Categorías
Más información sobre Creating and Concatenating Matrices en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!