Normalize vector in 3D space
Ältere Kommentare anzeigen
Hello,
I'm trying to normalize a vector in 3d space into a unit vector
Antworten (2)
X= v./sqrt( sum(v.^2,2) );
John D'Errico
am 26 Jan. 2019
V = V./norm(V);
The default for norm is the 2-norm, so what you want.
Kategorien
Mehr zu Creating and Concatenating Matrices finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!