Lines Matching refs:sinh
30 * sinh(z) = sinh(x+iy)
31 * = sinh(x) cos(y) + i cosh(x) sin(y).
58 return CMPLX(sinh(x), y);
60 return CMPLX(sinh(x) * cos(y), cosh(x) * sin(y));
79 * sinh(+-0 +- I Inf) = sign(d(+-0, dNaN))0 + I dNaN.
83 * sinh(+-0 +- I NaN) = sign(d(+-0, NaN))0 + I d(NaN).
91 * sinh(+-Inf +- I 0) = +-Inf + I +-0.
93 * sinh(NaN +- I 0) = d(NaN) + I +-0.
102 * sinh(x +- I Inf) = dNaN + I dNaN.
105 * sinh(x + I NaN) = d(NaN) + I d(NaN).
113 * sinh(+-Inf + I NaN) = +-Inf + I d(NaN).
117 * sinh(+-Inf +- I Inf) = +Inf + I dNaN.
121 * sinh(+-Inf + I y) = +-Inf cos(y) + I Inf sin(y)
130 * sinh(NaN + I NaN) = d(NaN) + I d(NaN).
132 * sinh(NaN +- I Inf) = d(NaN) + I d(NaN).
136 * sinh(NaN + I y) = d(NaN) + I d(NaN).