Normalize vector in 3D space
Mostra commenti meno recenti
Hello,
I'm trying to normalize a vector in 3d space into a unit vector
Risposte (2)
X= v./sqrt( sum(v.^2,2) );
John D'Errico
il 26 Gen 2019
V = V./norm(V);
The default for norm is the 2-norm, so what you want.
Categorie
Scopri di più su Creating and Concatenating Matrices in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!