| 216 | } |
| 217 | |
| 218 | inline Rcomplex complex__tanh(Rcomplex z) |
| 219 | { |
| 220 | Rcomplex r, b; |
| 221 | b.r = -z.i; |
| 222 | b.i = z.r; |
| 223 | Rcomplex a = complex__tan(b); |
| 224 | r.r = a.i; |
| 225 | r.i = -a.r; |
| 226 | return r ; |
| 227 | } |
| 228 | |
| 229 | } // internal |
| 230 |
nothing calls this directly
no test coverage detected