man-pages/man3/cacos.3

38 lines
788 B
Groff
Raw Normal View History

2004-11-03 13:51:07 +00:00
.\" Copyright 2002 Walter Harms (walter.harms@informatik.uni-oldenburg.de)
.\" Distributed under GPL
.\"
2007-12-24 11:27:43 +00:00
.TH CACOS 3 2007-12-26 "" "Linux Programmer's Manual"
2004-11-03 13:51:07 +00:00
.SH NAME
cacos, cacosf, cacosl \- complex arc cosine
.SH SYNOPSIS
.B #include <complex.h>
.sp
.BI "double complex cacos(double complex " z );
.br
.BI "float complex cacosf(float complex " z );
.br
.BI "long double complex cacosl(long double complex " z );
2004-11-03 13:51:07 +00:00
.sp
2007-07-21 05:25:03 +00:00
Link with \fI\-lm\fP.
2004-11-03 13:51:07 +00:00
.SH DESCRIPTION
The
.BR cacos ()
2007-12-24 11:27:43 +00:00
function calculates the complex arc cosine of
.IR z .
If \fIy\ =\ cacos(z)\fP, then \fIz\ =\ ccos(y)\fP.
The real part of
.I y
is chosen in the interval [0,pi].
2004-11-03 13:51:07 +00:00
.LP
2007-12-24 11:27:43 +00:00
One has:
.nf
cacos(z) = \-i clog(z + csqrt(z * z \- 1))
.fi
2004-11-03 13:51:07 +00:00
.SH "CONFORMING TO"
C99.
2004-11-03 13:51:07 +00:00
.SH "SEE ALSO"
.BR ccos (3),
.BR clog (3),
2006-04-21 01:24:06 +00:00
.BR complex (7)