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

Function complex__sinh

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

Source from the content-addressed store, hash-verified

205 return r ;
206}
207inline Rcomplex complex__sinh(Rcomplex z)
208{
209 Rcomplex r, b;
210 b.r = -z.i;
211 b.i = z.r;
212 Rcomplex a = complex__sin(b);
213 r.r = a.i;
214 r.i = -a.r;
215 return r ;
216}
217
218inline Rcomplex complex__tanh(Rcomplex z)
219{

Callers

nothing calls this directly

Calls 1

complex__sinFunction · 0.85

Tested by

no test coverage detected