Lines Matching full:cosh
30 * cosh(z) = cosh(x+iy)
31 * = cosh(x) cos(y) + i sinh(x) sin(y).
65 return (cpack(cosh(x), x * y));
67 return (cpack(cosh(x) * cos(y), sinh(x) * sin(y)));
69 /* |x| >= 22, so cosh(x) ~= exp(|x|) */
86 * cosh(+-0 +- I Inf) = dNaN + I sign(d(+-0, dNaN))0.
90 * cosh(+-0 +- I NaN) = d(NaN) + I sign(d(+-0, NaN))0.
98 * cosh(+-Inf +- I 0) = +Inf + I (+-)(+-)0.
100 * cosh(NaN +- I 0) = d(NaN) + I sign(d(NaN, +-0))0.
110 * cosh(x +- I Inf) = dNaN + I dNaN.
113 * cosh(x + I NaN) = d(NaN) + I d(NaN).
121 * cosh(+-Inf + I NaN) = +Inf + I d(NaN).
123 * cosh(+-Inf +- I Inf) = +Inf + I dNaN.
127 * cosh(+-Inf + I y) = +Inf cos(y) +- I Inf sin(y)
136 * cosh(NaN + I NaN) = d(NaN) + I d(NaN).
138 * cosh(NaN +- I Inf) = d(NaN) + I d(NaN).
142 * cosh(NaN + I y) = d(NaN) + I d(NaN).