Common mathematical functions | |||||||||||||||||||||||||||||||
Mathematical special functions(C++17) | |||||||||||||||||||||||||||||||
Mathematical constants(C++20) | |||||||||||||||||||||||||||||||
Basic linear algebra algorithms(C++26) | |||||||||||||||||||||||||||||||
Data-parallel types (SIMD)(C++26) | |||||||||||||||||||||||||||||||
Floating-point environment(C++11) | |||||||||||||||||||||||||||||||
Complex numbers | |||||||||||||||||||||||||||||||
Numeric array (valarray ) | |||||||||||||||||||||||||||||||
Pseudo-random number generation | |||||||||||||||||||||||||||||||
Bit manipulation(C++20) | |||||||||||||||||||||||||||||||
Saturation arithmetic(C++26) | |||||||||||||||||||||||||||||||
Factor operations | |||||||||||||||||||||||||||||||
|
| ||||||||||||||||||||||||||||||
Interpolations | |||||||||||||||||||||||||||||||
|
| ||||||||||||||||||||||||||||||
Generic numeric operations | |||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||
C-style checked integer arithmetic | |||||||||||||||||||||||||||||||
|
Nearest integer floating point operations | |||||||||||||||||||||||||||||||||||||||||
|
| ||||||||||||||||||||||||||||||||||||||||
Floating point manipulation functions | |||||||||||||||||||||||||||||||||||||||||
|
| ||||||||||||||||||||||||||||||||||||||||
Classification and comparison | |||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||
Types | |||||||||||||||||||||||||||||||||||||||||
Macro constants | |||||||||||||||||||||||||||||||||||||||||
|
|
Defined in header <cmath> | ||
(1) | ||
float atan2(float y,float x); double atan2(double y,double x); | (until C++23) | |
/*floating-point-type*/ atan2(/*floating-point-type*/ y, | (since C++23) (constexpr since C++26) | |
float atan2f(float y,float x); | (2) | (since C++11) (constexpr since C++26) |
longdouble atan2l(longdouble y,longdouble x); | (3) | (since C++11) (constexpr since C++26) |
SIMD overload(since C++26) | ||
Defined in header <simd> | ||
template<class V0,class V1> constexpr/*math-common-simd-t*/<V0, V1> | (S) | (since C++26) |
Additional overloads(since C++11) | ||
Defined in header <cmath> | ||
template<class Integer> double atan2( Integer y, Integer x); | (A) | (constexpr since C++26) |
std::atan2
for all cv-unqualified floating-point types as the type of the parameters.(since C++23)S) The SIMD overload performs an element-wise std::atan2 onv_yandv_x.
| (since C++26) |
A) Additional overloads are provided for all integer types, which are treated asdouble. | (since C++11) |
Contents |
y, x | - | floating-point or integer values |
y |
x |
If a domain error occurs, an implementation-defined value is returned (NaN where supported).
If a range error occurs due to underflow, the correct result (after rounding) is returned.
Errors are reported as specified inmath_errhandling.
Domain error may occur ifx andy are both zero.
If the implementation supports IEEE floating-point arithmetic (IEC 60559),
std::atan2(y, x) is equivalent tostd::arg(std::complex<std::common_type_t<decltype(x), decltype(y)>>(x, y)).
POSIX specifies that in case of underflow, the valuey/ x is returned, and if that is not supported, an implementation-defined value no greater thanDBL_MIN,FLT_MIN, andLDBL_MIN is returned.
The additional overloads are not required to be provided exactly as(A). They only need to be sufficient to ensure that for their first argumentnum1 and second argumentnum2:
| (until C++23) |
Ifnum1 andnum2 have arithmetic types, thenstd::atan2(num1, num2) has the same effect asstd::atan2(static_cast</*common-floating-point-type*/>(num1), If no such floating-point type with the greatest rank and subrank exists, thenoverload resolution does not result in a usable candidate from the overloads provided. | (since C++23) |
#include <cmath>#include <iostream> void print_coordinates(int x,int y){std::cout<<std::showpos<<"(x:"<< x<<", y:"<< y<<") cartesian is "<<"(r:"<<std::hypot(x, y)<<", phi:"<< std::atan2(y, x)<<") polar\n";} int main(){// normal usage: the signs of the two arguments determine the quadrant print_coordinates(+1,+1);// atan2( 1, 1) = +pi/4, Quad I print_coordinates(-1,+1);// atan2( 1, -1) = +3pi/4, Quad II print_coordinates(-1,-1);// atan2(-1, -1) = -3pi/4, Quad III print_coordinates(+1,-1);// atan2(-1, 1) = -pi/4, Quad IV // special valuesstd::cout<<std::noshowpos<<"atan2(0, 0) = "<< atan2(0,0)<<'\n'<<"atan2(0,-0) = "<< atan2(0,-0.0)<<'\n'<<"atan2(7, 0) = "<< atan2(7,0)<<'\n'<<"atan2(7,-0) = "<< atan2(7,-0.0)<<'\n';}
Output:
(x:+1, y:+1) cartesian is (r:1.41421, phi:0.785398) polar(x:-1, y:+1) cartesian is (r:1.41421, phi:2.35619) polar(x:-1, y:-1) cartesian is (r:1.41421, phi:-2.35619) polar(x:+1, y:-1) cartesian is (r:1.41421, phi:-0.785398) polaratan2(0, 0) = 0atan2(0,-0) = 3.14159atan2(7, 0) = 1.5708atan2(7,-0) = 1.5708
(C++11)(C++11) | computes arc sine (\({\small\arcsin{x}}\)arcsin(x)) (function)[edit] |
(C++11)(C++11) | computes arc cosine (\({\small\arccos{x}}\)arccos(x)) (function)[edit] |
(C++11)(C++11) | computes arc tangent (\({\small\arctan{x}}\)arctan(x)) (function)[edit] |
returns the phase angle (function template)[edit] | |
applies the functionstd::atan2 to a valarray and a value (function template)[edit] | |
C documentation foratan2 |