|
NAMEcacos , cacosf ,
cacosl , cacosh ,
cacoshf , cacoshl ,
casin , casinf ,
casinl , casinh ,
casinhf , casinhl ,
catan , catanf ,
catanl , catanh ,
catanhf , catanhl —
complex inverse trigonometric and hyperbolic functions
LIBRARYMath Library (libm, -lm)SYNOPSIS#include <complex.h>
double complex
float complex
long double complex
double complex
float complex
long double complex
double complex
float complex
long double complex
double complex
float complex
long double complex
double complex
float complex
long double complex
double complex
float complex
long double complex
DESCRIPTIONThecacos (), casin (), and
catan () functions compute the principal value of the
inverse cosine, sine, and tangent of the complex number
z, respectively. The cacosh (),
casinh (), and catanh ()
functions compute the principal value of the inverse hyperbolic cosine, sine,
and tangent. The cacosf (),
casinf (), catanf ()
cacoshf (), casinhf (), and
catanhf () functions perform the same operations in
float precision. The cacosl (),
casinl (), catanl ()
cacoshl (), casinhl (), and
catanhl () functions perform the same operations in
long double precision.
There is no universal convention for defining the principal values of these functions. The following table gives the branch cuts, and the corresponding ranges for the return values, adopted by the C language.
SEE ALSOccos(3), ccosh(3), complex(3), cos(3), math(3), sin(3), tan(3)STANDARDSThese functions conform to ISO/IEC 9899:1999 (“ISO C99”).
Visit the GSP FreeBSD Man Page Interface. |