Finding a 3D parallel vector
8 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Alonso Figueroa
el 24 de Jul. de 2018
Comentada: Alonso Figueroa
el 25 de Jul. de 2018
Hello,
I am looking for a unit vector that starts at a point (l,m,n) and it's, at the same time, parallel to the line that goes from (a,b,c) to (d,e,f). Can anyone help me with this problem?
Thank you, AF.
0 comentarios
Respuesta aceptada
James Tursa
el 24 de Jul. de 2018
Editada: James Tursa
el 24 de Jul. de 2018
A unit vector parallel to the points from (a,b,c) to (d,e,f) is just this:
v1 = [a,b,c];
v2 = [d,e,f];
u = v2 - v1;
u = u/norm(u);
A point on a parallel line that goes through (l,m,n) is then just this:
p = [l,m,n];
x = any scalar value
point_on_line = p + x * u;
Más respuestas (0)
Ver también
Categorías
Más información sobre Linearization en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!