- t2ex
- bsd_source/lib/libc/src_bsd/complex/s_ccos.c - 2.3KB - 97 lines
85: _cchsh( cimag(z), &ch, &sh );
86: w = cos(creal (z)) * ch - (sin (creal (z)) * sh) * I;
87: return (w);
- bsd_source/lib/libc/src_bsd/complex/s_ccosh.c - 1.8KB - 71 lines
59: y = cimag(z);
60: w = cosh (x) * cos (y) + (sinh (x) * sin (y)) * I;
61: return (w);
- bsd_source/lib/libc/src_bsd/complex/s_cexp.c - 2.0KB - 83 lines
71: r = exp (x);
72: w = r * cos (y) + r * sin (y) * I;
73: return (w);
- bsd_source/lib/libc/src_bsd/complex/s_cpow.c - 2.2KB - 84 lines
72: }
73: w = r * cos (theta) + (r * sin (theta)) * I;
74: return (w);
- bsd_source/lib/libc/src_bsd/complex/s_csin.c - 2.3KB - 99 lines
87: cchsh( cimag (z), &ch, &sh );
88: w = sin (creal(z)) * ch + (cos (creal(z)) * sh) * I;
89: return (w);
- bsd_source/lib/libc/src_bsd/complex/s_csinh.c - 1.8KB - 70 lines
58: y = cimag(z);
59: w = sinh (x) * cos (y) + (cosh (x) * sin (y)) * I;
60: return (w);
- bsd_source/lib/libc/src_bsd/complex/s_ctan.c - 3.8KB - 165 lines
153:
154: w = sin (2.0 * creal(z)) / d + (sinh (2.0 * cimag(z)) / d) * I;
155: return (w);
- bsd_source/lib/libc/src_bsd/complex/s_ctanh.c - 1.9KB - 72 lines
60: d = cosh (2.0 * x) + cos (2.0 * y);
61: w = sinh (2.0 * x) / d + (sin (2.0 * y) / d) * I;
62: return (w);
- bsd_source/lib/libc/src_bsd/math/b_tgamma.c - 10.9KB - 346 lines
311: if (z < .25)
312: z = sin(M_PI*z);
313: else
- bsd_source/lib/libc/src_bsd/math/e_j0.c - 15.1KB - 379 lines
90: if(ix >= 0x40000000) { /* |x| >= 2.0 */
91: s = sin(x);
92: c = cos(x);
- More results from e_j0.c