function template
<complex>
std::arg complex (1)template<class T> T arg (const complex<T>& x);complex (1)
template<class T> T arg (const complex<T>& x);arithmetic type (2)
double arg (ArithmeticType x); // additional overloads
Phase angle of complex
Returns the phase angle (or angular component) of the complex number x, expressed in radians.The phase angle of a complex number is the angle the theoretical vector to (real,imag)
forms with the real axis (i.e., its arc tangent). It returns the same as:
1
atan2(x.imag(),x.real());
Only available for instantiations of
complex.
are provided for arguments of any
fundamental arithmetic type: In this case, the function assumes the value has a zero
imaginarycomponent.
The return type is
double
, except if the argument is
float
or
long double
(in which case, the return type is of the same type as the argument).
1
2
3
4
5
6
7
8
9
10
11
12
13
// arg complex example
#include <iostream> // std::cout
#include <complex> // std::complex, std::abs, std::arg
int main ()
{
std::complex<double> mycomplex (3.0,4.0);
std::cout << "The polar form of " << mycomplex;
std::cout << " is " << std::abs(mycomplex) << "*e^i*" << std::arg(mycomplex) << "rad\n";
return 0;
}
The polar form of (3,4) is 5*e^i*0.927295rad
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4