MCPcopy Create free account
hub / github.com/RcppCore/Rcpp / complex__atanh

Function complex__atanh

inst/include/Rcpp/sugar/functions/complex.h:198–206  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

196}
197
198inline 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}
207inline Rcomplex complex__sinh(Rcomplex z)
208{
209 Rcomplex r, b;

Callers

nothing calls this directly

Calls 1

complex__atanFunction · 0.85

Tested by

no test coverage detected