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

Function complex__asinh

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

Source from the content-addressed store, hash-verified

186}
187
188inline 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
198inline Rcomplex complex__atanh(Rcomplex z){
199 Rcomplex r, b;

Callers

nothing calls this directly

Calls 1

complex__asinFunction · 0.85

Tested by

no test coverage detected