gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 3 of 3 for funcall:atan2 (0.00 seconds)
t2ex
bsd_source/lib/libc/src_bsd/complex/s_carg.c - 1.2KB - 38 lines
27: {
28:         return atan2 (__imag__ z, __real__ z);
29: }
bsd_source/lib/libc/src_bsd/complex/s_catan.c - 3.3KB - 139 lines
112: 
113:         t = 0.5 * atan2 (2.0 * x, a);
114:         w = _redupi (t);
bsd_source/lib/libc/src_bsd/complex/s_clog.c - 2.2KB - 85 lines
72:         p = log(rr);
73:         rr = atan2 (cimag (z), creal (z));
74:         w = p + rr * I;