gonzui


Format: Advanced Search

SearchGoogle itResults 1 - 6 of 6 for funcall:sinh (0.02 seconds)
t2ex
bsd_source/lib/libc/src_bsd/complex/s_ccos.c - 2.3KB - 97 lines
67:                 *c = cosh(x);
68:                 *s = sinh(x);
69:         }
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_csin.c - 2.3KB - 99 lines
69:                 *c = cosh(x);
70:                 *s = sinh(x);
71:         }
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);