OpenBSD manual page server

Manual Page Search Parameters

CACOS(3) Library Functions Manual CACOS(3)

cacos, cacosf, cacoslcomplex circular arc cosine

#include <complex.h>

double complex
cacos(double complex z);

float complex
cacosf(float complex z);

long double complex
cacosl(long double complex z);

The (), () and () functions compute the complex circular arc cosine of z.

For all complex floating-point numbers z,

cacos(z) = Pi/2 - casin(z).

The cacos(), cacosf() and cacosl() functions return the complex circular arc cosine of z with unbounded imaginary part, and real part in the interval [0, Pi].

casin(3), catan(3)

The cacos(), cacosf() and cacosl() functions conform to ISO/IEC 9899:1999 (“ISO C99”).

June 5, 2013 OpenBSD-current