| 196 | } |
| 197 | |
| 198 | inline Rcomplex complex__atanh(Rcomplex z){ |
| 199 | Rcomplex r, b; |
| 200 | b.r = -z.i; |
| 201 | b.i = z.r; |
| 202 | Rcomplex a = complex__atan(b); |
| 203 | r.r = a.i; |
| 204 | r.i = -a.r; |
| 205 | return r ; |
| 206 | } |
| 207 | inline Rcomplex complex__sinh(Rcomplex z) |
| 208 | { |
| 209 | Rcomplex r, b; |
nothing calls this directly
no test coverage detected