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

Function complex__acos

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

Source from the content-addressed store, hash-verified

146}
147
148inline Rcomplex complex__acos(Rcomplex z)
149{
150 Rcomplex r, Asin = complex__asin(z);
151 r.r = M_PI_2 - Asin.r;
152 r.i = - Asin.i;
153 return r ;
154}
155
156/* Complex Arctangent Function */
157/* Equation (4.4.39) Abramowitz and Stegun */

Callers 1

complex__acoshFunction · 0.85

Calls 1

complex__asinFunction · 0.85

Tested by

no test coverage detected