find the 3D coordinate of point with condition

1 view (last 30 days)
Let's say: I have point A(1,1,1) in 3D space OXYZ, and vector n(1,2,3). How can i find the coordinate point B satifying the condition:
1/ Distance between A & B is: 10
2/ B lie on vector n

Accepted Answer

Matt J
Matt J on 13 May 2018
Edited: Matt J on 13 May 2018
B=A+10*n/norm(n);
or
B=A-10*n/norm(n);

More Answers (0)

Tags

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!