Effacer les filtres
Effacer les filtres

Angle between a vector and a line parallel with the y-axis? (image example)

12 vues (au cours des 30 derniers jours)
Hi, I have this red point with coordinates (x1,y1) and I would like to calculate the angles that each vector departing from the red point to the black ones form with a line parallel to the y-axis. How should I do? I'm so sorry for the drawing but that is exactly the scenario. Thanks!

Réponse acceptée

Ameer Hamza
Ameer Hamza le 3 Nov 2020
Try something like this
P = [-3, 5]; % (x1,y1)
x = [0 10]; % point of y-axis
Px = x-P;
angle = atan2(Px(1), -Px(2))
  6 commentaires
Davide Mori
Davide Mori le 4 Nov 2020
You are right, I don't know I got that result ahahah, thank you so much!
Ameer Hamza
Ameer Hamza le 4 Nov 2020
I am glad to be of help! :)

Connectez-vous pour commenter.

Plus de réponses (0)

Produits


Version

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by