Home | History | Annotate | Download | only in complex.transcendentals

Lines Matching full:complex

10 // <complex>
13 // complex<T>
14 // sin(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;
42 std::complex<double> r = sin(x[i]);
43 std::complex<double> t1(-imag(x[i]), real(x[i]));
44 std::complex<double> t2 = sinh(t1);
45 std::complex<double> z(imag(t2), -real(t2));