Project element on a line
5 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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 commentaires
Matt J
le 29 Sep 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.
Réponse acceptée
Matt J
le 30 Sep 2012
Modifié(e) : Matt J
le 30 Sep 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 commentaires
Matt J
le 1 Oct 2012
I'm not aware of the distinction between "orthogonal projection" and "perpendicular projection".
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Numerical Integration and Differentiation dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!