| 186 | } |
| 187 | |
| 188 | inline Rcomplex complex__asinh(Rcomplex z){ |
| 189 | Rcomplex r, b; |
| 190 | b.r = -z.i; |
| 191 | b.i = z.r; |
| 192 | Rcomplex a = complex__asin(b); |
| 193 | r.r = a.i; |
| 194 | r.i = -a.r; |
| 195 | return r ; |
| 196 | } |
| 197 | |
| 198 | inline Rcomplex complex__atanh(Rcomplex z){ |
| 199 | Rcomplex r, b; |
nothing calls this directly
no test coverage detected