Angle between two azimuth, elevation vectors.

15 visualizaciones (últimos 30 días)
David Sanipatin
David Sanipatin el 8 de Ag. de 2021
Comentada: David Sanipatin el 8 de Ag. de 2021
I have two vectors from a siteviewer simulation in [Azimuth,Elevation] form, and I need the angle between these two.
AzEl1=[-126,89];
AzEl2=[12,3];
Thanks in advance.

Respuesta aceptada

DGM
DGM el 8 de Ag. de 2021
Consider:
AzEl1 = [0 45];
AzEl2 = [45 0];
% put in vector form
a = [[cosd(AzEl1(1)) sind(AzEl1(1))] * cosd(AzEl1(2)) sind(AzEl1(2))];
b = [[cosd(AzEl2(1)) sind(AzEl2(1))] * cosd(AzEl2(2)) sind(AzEl2(2))];
th = acosd(dot(a,b))
th = 60.0000
This might be simpler with some other tools I'm unfamiliar with.

Más respuestas (0)

Categorías

Más información sobre Propagation and Channel Models en Help Center y File Exchange.

Productos


Versión

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by