Main Content

phitheta2azel

Convert angles from phi/theta form to azimuth/elevation form

Description

AzEl = phitheta2azel(PhiTheta) converts the phi/theta angle pairs to their corresponding azimuth/elevation angle pairs.

example

AzEl = phitheta2azel(PhiTheta,RotAx) also specifies the choice of phi-theta angle convention using RotAx.

example

Examples

collapse all

Find the azimuth-elevation representation for φ = 30° and θ = 0°. Use the phi-theta convention with φ defined from the y-axis to the z-axis, and θ defined from the x-axis toward the yz-plane.

azel = phitheta2azel([30;10])
azel = 2×1

    8.6822
    4.9809

Find the azimuth-elevation representation for φ = 30° and θ = 0°. Use the phi-theta convention with φ defined from the x-axis to the y-axis, and θ defined from the z-axis toward the xy-plane.

azel = phitheta2azel([30;10],false)
azel = 2×1

   30.0000
   80.0000

Copyright 2012 The MathWorks, Inc..

Input Arguments

collapse all

Phi and theta angles, specified as a two-row matrix. Each column of the matrix represents an angle in degrees, in the form [phi; theta].

Data Types: double

Phi-theta angle convention selection, specified as true or false.

  • If RotAx is true, the phi angle of a direction vector is the angle from the z-axis to the projection of the vector into the yz-plane. The theta angle is defined from the x-axis to the direction vector. Positive values are toward the yz-plane.

  • If RotAx is false, the phi angle is defined from the x-axis to the projection of the direction vector in the xy-plane. The angle is positive in the direction of the y-axis. The theta angle is defined from the z-axis to the direction vector and is positive in the direction of the xy- plane (see Alternative Definition of Phi and Theta Angles ).

Data Types: logical

Output Arguments

collapse all

Azimuth and elevation angles, returned as a two-row matrix. Each column of the matrix represents an angle in degrees, in the form [azimuth; elevation]. The matrix dimensions of AzEl are the same as those of PhiTheta.

More About

collapse all

Extended Capabilities

expand all

Version History

Introduced in R2012a