Movatterモバイル変換


[0]ホーム

URL:


<<< PreviousHomeNext >>>


NAME

atan2, atan2f, atan2l - arc tangent functions

SYNOPSIS

#include <math.h>

double atan2(double
y, doublex);
float atan2f(float
y, floatx);
long double atan2l(long double
y, long doublex);

DESCRIPTION

[CX][Option Start] The functionality described on this reference page is aligned with the ISO C standard. Any conflict between therequirements described here and the ISO C standard is unintentional. This volume of POSIX.1-2017 defers to the ISO Cstandard.[Option End]

These functions shall compute the principal value of the arc tangent ofy/x, using the signs of both arguments todetermine the quadrant of the return value.

An application wishing to check for error situations should seterrno to zero and callfeclearexcept(FE_ALL_EXCEPT) before calling these functions. On return, iferrno is non-zero orfetestexcept(FE_INVALID | FE_DIVBYZERO | FE_OVERFLOW | FE_UNDERFLOW) is non-zero, an error has occurred.

RETURN VALUE

Upon successful completion, these functions shall return the arc tangent ofy/x in the range [-,] radians.

Ify is ±0 andx is < 0, ± shall be returned.

Ify is ±0 andx is > 0, ±0 shall be returned.

Ify is < 0 andx is ±0, -/2 shall be returned.

Ify is > 0 andx is ±0,/2 shall be returned.

Ifx is 0, a pole error shall not occur.

[MX][Option Start] Ifeitherx ory is NaN, a NaN shall be returned.

If the correct value would cause underflow, a range error may occur, andatan(),atan2f(), andatan2l() shall return an implementation-defined value no greater in magnitude than DBL_MIN, FLT_MIN,and LDBL_MIN, respectively.[Option End]

[MXX][Option Start]If the IEC 60559 Floating-Point option is supported,y/x should be returned.[Option End]

[MX][Option Start] Ify is ±0 andx is -0, ± shall be returned.

Ify is ±0 andx is +0, ±0 shall be returned.

For finite values of ±y > 0, ifx is -Inf, ± shall bereturned.

For finite values of ±y > 0, ifx is +Inf, ±0 shall be returned.

For finite values ofx, ify is ±Inf, ±/2 shall bereturned.

Ify is ±Inf andx is -Inf, ±3/4 shall be returned.

Ify is ±Inf andx is +Inf, ±/4 shall be returned.

If both arguments are 0, a domain error shall not occur.[Option End]

ERRORS

These functions may fail if:

Range Error
[MX][Option Start]The result underflows.

If the integer expression (math_errhandling & MATH_ERRNO) is non-zero, thenerrno shall be set to [ERANGE]. Ifthe integer expression (math_errhandling & MATH_ERREXCEPT) is non-zero, then the underflow floating-point exceptionshall be raised.[Option End]


The following sections are informative.

EXAMPLES

Converting Cartesian to Polar Coordinates System

The function below usesatan2() to convert a 2d vector expressed in cartesian coordinates (x,y) to thepolar coordinates (rho,theta). There are other ways to compute the angletheta, usingasin()acos(), oratan(). However,atan2() presents here two advantages:

Finally, this example useshypot() rather thansqrt() since it is better for special cases; seehypot() for more information.

#include <math.h>
voidcartesian_to_polar(const double x, const double y, double *rho, double *theta ){ *rho = hypot (x,y); /* better than sqrt(x*x+y*y) */ *theta = atan2 (y,x);}

APPLICATION USAGE

On error, the expressions (math_errhandling & MATH_ERRNO) and (math_errhandling & MATH_ERREXCEPT) areindependent of each other, but at least one of them must be non-zero.

RATIONALE

None.

FUTURE DIRECTIONS

None.

SEE ALSO

acos,asin,atan,feclearexcept,fetestexcept,hypot,isnan,sqrt,tan

XBDTreatment of Error Conditions for Mathematical Functions,<math.h>

CHANGE HISTORY

First released in Issue 1. Derived from Issue 1 of the SVID.

Issue 5

The DESCRIPTION is updated to indicate how an application should check for an error. This text was previously published in theAPPLICATION USAGE section.

Issue 6

Theatan2f() andatan2l() functions are added for alignment with the ISO/IEC 9899:1999 standard.

The DESCRIPTION, RETURN VALUE, ERRORS, and APPLICATION USAGE sections are revised to align with the ISO/IEC 9899:1999standard, and the IEC 60559:1989 standard floating-point extensions over the ISO/IEC 9899:1999 standard are marked.

IEEE Std 1003.1-2001/Cor 2-2004, item XSH/TC2/D6/18 is applied, adding to the EXAMPLES section.

Issue 7

POSIX.1-2008, Technical Corrigendum 1, XSH/TC1-2008/0038 [68,428] is applied.

End of informative text.

 

return to top of page


<<< PreviousHomeNext >>>


[8]ページ先頭

©2009-2026 Movatter.jp