man-pages/man3/casin.3

32 lines
746 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
.\"
.TH CASIN 3 2002-07-28 "" "Linux Programmer's Manual"
2004-11-03 13:51:07 +00:00
.SH NAME
casin, casinf, casinl \- complex arc sine
2004-11-03 13:51:07 +00:00
.SH SYNOPSIS
.B #include <complex.h>
.sp
.BI "double complex casin(double complex " z );
.br
.BI "float complex casinf(float complex " z );
.br
.BI "long double complex casinl(long double complex " z );
2004-11-03 13:51:07 +00:00
.sp
Link with \fI-lm\fP.
2004-11-03 13:51:07 +00:00
.SH DESCRIPTION
The
.BR casin ()
2005-10-19 14:48:35 +00:00
function calculates the complex asin().
2004-11-03 13:51:07 +00:00
If y = casin(z), then z = csin(y).
2005-07-07 08:27:03 +00:00
The real part of y is chosen in the interval [\-pi/2,pi/2].
2004-11-03 13:51:07 +00:00
.LP
One has
2007-05-01 08:15:41 +00:00
casin(z) = \-i clog(iz + csqrt(1 \- z * z)).
2004-11-03 13:51:07 +00:00
.SH "CONFORMING TO"
C99
.SH "SEE ALSO"
.BR ccos (3),
.BR clog (3),
2006-04-21 01:24:06 +00:00
.BR complex (7)