Normalize vector in 3D space
显示 更早的评论
Hello,
I'm trying to normalize a vector in 3d space into a unit vector
回答(2 个)
X= v./sqrt( sum(v.^2,2) );
John D'Errico
2019-1-26
V = V./norm(V);
The default for norm is the 2-norm, so what you want.
类别
在 帮助中心 和 File Exchange 中查找有关 Creating and Concatenating Matrices 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!