Lines Matching refs:cosh
30 * cosh(z) = cosh(x+iy)
31 * = cosh(x) cos(y) + i sinh(x) sin(y).
58 return CMPLX(cosh(x), x * y);
60 return CMPLX(cosh(x) * cos(y), sinh(x) * sin(y));
62 /* |x| >= 22, so cosh(x) ~= exp(|x|) */
79 * cosh(+-0 +- I Inf) = dNaN + I sign(d(+-0, dNaN))0.
83 * cosh(+-0 +- I NaN) = d(NaN) + I sign(d(+-0, NaN))0.
91 * cosh(+-Inf +- I 0) = +Inf + I (+-)(+-)0.
93 * cosh(NaN +- I 0) = d(NaN) + I sign(d(NaN, +-0))0.
103 * cosh(x +- I Inf) = dNaN + I dNaN.
106 * cosh(x + I NaN) = d(NaN) + I d(NaN).
114 * cosh(+-Inf + I NaN) = +Inf + I d(NaN).
116 * cosh(+-Inf +- I Inf) = +Inf + I dNaN.
120 * cosh(+-Inf + I y) = +Inf cos(y) +- I Inf sin(y)
129 * cosh(NaN + I NaN) = d(NaN) + I d(NaN).
131 * cosh(NaN +- I Inf) = d(NaN) + I d(NaN).
135 * cosh(NaN + I y) = d(NaN) + I d(NaN).