Lines Matching full:complex
10 // <complex>
13 // complex<T>
14 // atan(const complex<T>& x);
16 #include <complex>
23 test(const std::complex<T>& c, std::complex<T> x)
32 test(std::complex<T>(0, 0), std::complex<T>(0, 0));
37 typedef std::complex<double> C;
41 std::complex<double> r = atan(x[i]);
42 std::complex<double> t1(-imag(x[i]), real(x[i]));
43 std::complex<double> t2 = atanh(t1);
44 std::complex<double> z(imag(t2), -real(t2));