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

Function complex__sin

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

Source from the content-addressed store, hash-verified

108 return r ;
109}
110inline Rcomplex complex__sin(Rcomplex z){
111 Rcomplex r ;
112 r.r = ::sin(z.r) * ::cosh(z.i);
113 r.i = ::cos(z.r) * ::sinh(z.i);
114 return r;
115}
116inline Rcomplex complex__tan(Rcomplex z){
117 Rcomplex r ;
118 double x2, y2, den;

Callers 1

complex__sinhFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected