| 205 | return r ; |
| 206 | } |
| 207 | inline Rcomplex complex__sinh(Rcomplex z) |
| 208 | { |
| 209 | Rcomplex r, b; |
| 210 | b.r = -z.i; |
| 211 | b.i = z.r; |
| 212 | Rcomplex a = complex__sin(b); |
| 213 | r.r = a.i; |
| 214 | r.i = -a.r; |
| 215 | return r ; |
| 216 | } |
| 217 | |
| 218 | inline Rcomplex complex__tanh(Rcomplex z) |
| 219 | { |
nothing calls this directly
no test coverage detected