| 179 | |
| 180 | |
| 181 | inline Rcomplex complex__acosh(Rcomplex z){ |
| 182 | Rcomplex r, a = complex__acos(z); |
| 183 | r.r = -a.i; |
| 184 | r.i = a.r; |
| 185 | return r ; |
| 186 | } |
| 187 | |
| 188 | inline Rcomplex complex__asinh(Rcomplex z){ |
| 189 | Rcomplex r, b; |
nothing calls this directly
no test coverage detected