7 lines
96 B
C
7 lines
96 B
C
#include "complex_impl.h"
|
|
|
|
double carg(double complex z)
|
|
{
|
|
return atan2(cimag(z), creal(z));
|
|
}
|