Atan2

1

[[File:Atan2 differs from arctan.png|thumb| atan2(y, x) returns the angle θ between the positive x-axis and the ray from the origin to the point (x, y) , confined to .]] In computing and mathematics, the function atan2 is the 2-argument arctangent. By definition, is the angle measure (in radians, with ) between the positive x-axis and the ray from the origin to the point (x,,y) in the Cartesian plane. Equivalently, is the argument (also called phase or angle) of the complex number x + iy. (The argument of a function and the argument of a complex number, each mentioned above, should not be confused.) The function first appeared in the programming language Fortran in 1961. It was originally intended to return a correct and unambiguous value for the angle \theta in converting from Cartesian coordinates (x,,y) to polar coordinates (r,,\theta). If and, then and If x > 0, the desired angle measure is However, when x < 0 , the angle is diametrically opposite the desired angle, and \pm\pi (a half turn) must be added to place the point in the correct quadrant. Using the function does away with this correction, simplifying code and mathematical formulas.

Motivation

[[File:Atan2 argument sign graph.svg|thumb|Graph of the tangent function from −π to +π with the corresponding signs of y/x . The green arrows point to the results of atan2(−1, −1) and atan2(1, 1) .]] The ordinary single-argument arctangent function only returns angle measures in the interval \bigl({-\tfrac12\pi}, \tfrac12\pi), and when invoking it to find the direction angle from the origin to an arbitrary point (x,,y) in the Cartesian plane, it will yield incorrect results when the point is in the left half-plane x < 0. Diametrically opposite angle measures have the same tangent because To fully determine the direction angle from the origin given a point (x,,y) using the arctangent function, mathematical formulas or computer code must handle multiple cases; at least one for positive values of x and one for negative values of x, and sometimes additional cases when y is negative or one coordinate is zero. Finding angle measures and converting Cartesian to polar coordinates are common in scientific computing, and this code is redundant and error-prone. To save programmers the trouble, computer programming languages introduced the atan2 function, at least as early as the Fortran IV language of the 1960s. The quantity \operatorname{atan2}(y, x) is the angle measure between the x-axis and a ray from the origin to a point (x,,y) anywhere in the Cartesian plane. The signs of x and y are used to determine the quadrant of the result and select the correct branch of the multivalued function \operatorname{Arctan}(y/x). The atan2 function is useful in many applications involving Euclidean vectors such as finding the direction from one point to another or converting a rotation matrix to Euler angles. The atan2 function is now included in many other programming languages, and is also commonly found in mathematical formulas throughout science and engineering.

Argument order

In 1961, Fortran introduced the atan2 function with argument order (y, x) so that the argument (phase angle) of a complex number is This follows the left-to-right order of a fraction written y / x, so that for positive values of x. However, this is the opposite of the conventional component order for complex numbers, z = x + iy, or as coordinates See section Definition and computation. Some other programming languages (see § Realizations of the function in common computer languages) picked the opposite order instead. For example Microsoft Excel uses OpenOffice Calc uses and Mathematica uses defaulting to one-argument arctangent if called with one argument.

Definition and computation

The function atan2 computes the principal argument of the complex number x + iy, which is also the imaginary part of the principal value of the complex logarithm. That is, Adding any integer multiple of 2\pi (corresponding to complete turns around the origin) gives another argument of the same complex number, but the principal argument is defined as the unique representative angle in the interval ( -\pi, \pi ]. In terms of the standard arctangent function, whose image is \bigl({-\tfrac12\pi}, \tfrac12\pi\bigr), atan2 can be expressed piecewise: Instead of the tangent, it can be convenient to use the half-tangent t = \tan\tfrac12\theta as a representation of an angle, partly because the angle \theta = \operatorname{atan2}(y,,x) has a unique half-tangent, (See tangent half-angle formula.) The expression with y in the denominator should be used when x < 0 and y \ne 0 to possible loss of significance in computing \textstyle \sqrt{x^2 + y^2} + x. When an atan2 function is unavailable, it can be computed as twice the arctangent of the half-tangent t.

Derivative

As the function atan2 is a function of two variables, it has two partial derivatives. At points where these derivatives exist, atan2 is, except for a constant, equal to arctan(y/x) . Hence for x > 0 or y ≠ 0 , Thus the gradient of atan2 is given by Informally representing the function atan2 as the angle function θ(x, y) = atan2(y, x) (which is only defined up to a constant) yields the following formula for the total differential: While the function atan2 is discontinuous along the negative x-axis, reflecting the fact that angle cannot be continuously defined, this derivative is continuously defined except at the origin, reflecting the fact that infinitesimal (and indeed local) changes in angle can be defined everywhere except the origin. Integrating this derivative along a path gives the total change in angle over the path, and integrating over a closed loop gives the winding number. In the language of differential geometry, this derivative is a one-form, and it is closed (its derivative is zero) but not exact (it is not the derivative of a 0-form, i.e., a function), and in fact it generates the first de Rham cohomology of the punctured plane. This is the most basic example of such a form, and it is fundamental in differential geometry. The partial derivatives of atan2 do not contain trigonometric functions, making it particularly useful in many applications (e.g. embedded systems) where trigonometric functions can be expensive to evaluate.

Illustrations

This figure shows values of atan2 along selected rays from the origin, labelled at the unit circle. The values, in radians, are shown inside the circle. The diagram uses the standard mathematical convention that angles increase counterclockwise from zero along the ray to the right. Note that the order of arguments is reversed; the function atan2(y, x) computes the angle corresponding to the point (x, y) . This figure shows the values of along with for. Both functions are odd and periodic with periods \pi and 2\pi, respectively, and thus can easily be supplemented to any region of real values of \theta. One can clearly see the branch cuts of the -function at, and of the \arctan-function at. The two figures below show 3D views of respectively atan2(y, x) and arctan(y⁄x) over a region of the plane. Note that for atan2(y, x) , rays in the X/Y-plane emanating from the origin have constant values, but for arctan(y⁄x) lines in the X/Y-plane passing through the origin have constant values. For x > 0 , the two diagrams give identical values.

Angle sum and difference identity

The sum or difference of multiple angles to be computed by \operatorname{atan2} can alternately be computed by composing them as complex numbers. Given two coordinate pairs (x_1, y_1) and (x_2, y_2), their angles from the positive x axis will be composed (and lengths multiplied) if they are treated as complex numbers and then multiplied together, (x_1 + iy_1)(x_2 + iy_2)={}(x_1x_2 - y_1y_2) + i(y_1x_2 + x_1y_2). The resulting angle can be found using a single \operatorname{atan2} operation, so long as the as long as the resulting angle lies in (-\pi, \pi]: and likewise for more than two coordinate pairs. If the composed angle crosses the negative x-axis (i.e. exceeds the range (-\pi, \pi]), then the crossings can be counted and the appropriate integer multiple of 2\pi added to the final result to correct it. This difference formula is frequently used in practice to compute the angle between two planar vectors, since the resulting angle is always in the range (-\pi, \pi].

East-counterclockwise, north-clockwise and south-clockwise conventions, etc.

The function was originally designed for the convention in pure mathematics that can be termed east-counterclockwise. In practical applications, however, the north-clockwise and south-clockwise conventions are often the norm. In atmospheric sciences, for instance, the wind direction can be calculated using the function with the east- and north-components of the wind vector as its arguments; the solar azimuth angle can be calculated similarly with the east- and north-components of the solar vector as its arguments. The wind direction is normally defined in the north-clockwise sense, and the solar azimuth angle uses both the north-clockwise and south-clockwise conventions widely. These different conventions can be realized by swapping the positions and changing the signs of the x- and y-arguments as follows: As an example, let and, then the east-counterclockwise format gives , the north-clockwise format gives , and the south-clockwise format gives. Changing the sign of the x- and/or y-arguments and/or swapping their positions can create 8 possible variations of the function and they, interestingly, correspond to 8 possible definitions of the angle, namely, clockwise or counterclockwise starting from each of the 4 cardinal directions, north, east, south and west.

Realizations of the function in common computer languages

The realization of the function differs from one computer language to another: arg function is called and although it appears to take two arguments, it really only has one complex argument which is denoted by a pair of numbers: x + i y = (x, y) . The convention is used by: π and −0 when y = −0. These also may return NaN or raise an exception when given a NaN argument. π /2 for finite x. Particularly, is defined when both arguments are zero: π π . Atan(y, x) = Arg(x + i y) . (x, y) is converted from rectangular coordinates to polar coordinates. atan2(0, 0) or otherwise signal that an abnormal condition has arisen. atan2 can be implemented in a numerically reliable manner by the CORDIC method. Thus implementations of atan(y) will probably choose to compute atan2(y, 1) .

This article is derived from Wikipedia and licensed under CC BY-SA 4.0. View the original article.

Wikipedia® is a registered trademark of the Wikimedia Foundation, Inc.
Bliptext is not affiliated with or endorsed by Wikipedia or the Wikimedia Foundation.

Edit article