Project element on a line
8 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hi everyone! My question is: how can i project an element on a straight line? In other words, i have a matrix(nx2) that represent my element and a matrix(2x2) that represent my straight line, how can i project that element on that line? Is there a function? Thx in advance! :)
2 comentarios
Matt J
el 29 de Sept. de 2012
Explain how an nx2 matrix represent a (single?) element to be projected. Is each row a coordinate in 2D? And if so, how does a 2x2 matrix represents a straight line? In 2D, only 2 parameters are required to represent a line, not a 2x2 matrix.
Respuesta aceptada
Matt J
el 30 de Sept. de 2012
Editada: Matt J
el 30 de Sept. de 2012
In your example, the line new_w1 is going through the origin. I'll assume that to be the case here.
In general, if you want to project X1 onto the line through the origin t*d where d is the direction vector of the line, you would do
projections = X1*d(:)*d(:).'/norm(d)^2
2 comentarios
Matt J
el 1 de Oct. de 2012
I'm not aware of the distinction between "orthogonal projection" and "perpendicular projection".
Más respuestas (0)
Ver también
Categorías
Más información sobre Numerical Integration and Differentiation en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!