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

Function complex__tanh

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

Source from the content-addressed store, hash-verified

216}
217
218inline 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

Callers

nothing calls this directly

Calls 1

complex__tanFunction · 0.85

Tested by

no test coverage detected