- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
atan2() function in C++ STL
The atan2() function returns the tangent inverse of the coordinate in terms of y and x. Here y and x are the values of the y and x coordinates respectively. It is an inbuilt function in C++ STL.
The syntax of the atan2() function is given as follows.
atan2(dataType var1, dataType var2)
As can be seen from the syntax, the function atan2() accepts two parameters var1 and var2 of data type float, double or long double that are y and x point respectively.
The value returned by atan2() is in the range of -pi to pi and is the angle between the (x,y) and the positive x axis.
A program that demonstrates atan2() in C++ is given as follows.
Example
#include <iostream> #include <cmath> using namespace std; int main() { double y = 10, x = 5, ans; ans = atan2(y,x); cout << "atan2("<< y <<"/"<< x <<") = " << ans << endl; return 0; }
output
atan2(10/5) = 1.10715
In the above program, first the variables y and x are initialized. Then inverse tangent of y and x is found using atan2() and stored in ans. Finally the value of ans is displayed. This is demonstrated by the following code snippet.
double y = 10, x = 5, ans; ans = atan2(y,x); cout << "atan2("<< y <<"/"<< x <<") = " << ans << endl;
The result obtained by using the atan2() function can be converted into degrees and displayed. A program to demonstrate this is as follows.
Example
#include <iostream> #include <cmath> using namespace std; int main() { double y = 10, x = 5, ans; ans = atan2(y,x); ans = ans*180/3.14159; cout << "atan2("<< y <<"/"<< x <<") = " << ans << endl; return 0; }
Output
atan2(10/5) = 63.435
In the above program, the inverse tangent of y and x is obtained using atan2(). Then this value is converted into degrees. Finally, the output is displayed. This is demonstrated by the following code snippet.
double y = 10, x = 5, ans; ans = atan2(y,x); ans = ans*180/3.14159; cout << "atan2("<< y <<"/"<< x <<") = " << ans << endl;