The atan() function for complex number is defined in the complex header file.This function is the complex version of the atan() function. This function is used to calculate the complex arc tangent of complex number z and returns the arc tangent of complex number z.
Syntax:
template<class T> complex<T> atan (const complex<T>& z );
Parameter:This method takes a mandatory parameter z which represents the complex number.
Return value: This function returns the arc tangent of complex number z.
Below programs illustrate the atan() function in C++:
Example 1:-
// c++ program to demonstrate // example of atan() function. #include <bits/stdc++.h> using namespace std; // driver program int main() { complex< double > complexnumber(-2.0, 0.0); // use of atan() function for complex number cout << "The atan of " << complexnumber << " is " << atan (complexnumber) << endl; return 0; } |
The atan of (-2,0) is (-1.10715,0)
Example 2:-
// c++ program to demonstrate // example of atan() function. #include <bits/stdc++.h> using namespace std; // driver program int main() { complex< double > complexnumber(0.0, 2.0); // use of atan() function for complex number cout << "The atan of " << complexnumber << " is " << atan (complexnumber) << endl; return 0; } |
The atan of (0,2) is (1.5708,0.549306)
Attention reader! Don’t stop learning now. Get hold of all the important C++ Foundation and STL concepts with the C++ Foundation and STL courses at a student-friendly price and become industry ready.