Various reformattings.

This commit is contained in:
Michael Kerrisk 2007-12-24 11:40:38 +00:00
parent 2147452bc0
commit 4178335383
2 changed files with 21 additions and 11 deletions

View File

@ -1,7 +1,7 @@
.\" Copyright 2002 Walter Harms (walter.harms@informatik.uni-oldenburg.de) .\" Copyright 2002 Walter Harms (walter.harms@informatik.uni-oldenburg.de)
.\" Distributed under GPL .\" Distributed under GPL
.\" .\"
.TH CASIN 3 2002-07-28 "" "Linux Programmer's Manual" .TH CASIN 3 2007-12-26 "" "Linux Programmer's Manual"
.SH NAME .SH NAME
casin, casinf, casinl \- complex arc sine casin, casinf, casinl \- complex arc sine
.SH SYNOPSIS .SH SYNOPSIS
@ -17,12 +17,18 @@ Link with \fI\-lm\fP.
.SH DESCRIPTION .SH DESCRIPTION
The The
.BR casin () .BR casin ()
function calculates the complex asin(3). function calculates the complex arc sine of
If y = casin(z), then z = csin(y). .IR z .
The real part of y is chosen in the interval [\-pi/2,pi/2]. If \fIy\ =\ casin(z)\fP, then \fIz\ =\ csin(y)\fP.
The real part of
.I y
is chosen in the interval [\-pi/2,pi/2].
.LP .LP
One has One has:
casin(z) = \-i clog(iz + csqrt(1 \- z * z)). .nf
casin(z) = \-i clog(iz + csqrt(1 \- z * z))
.fi
.SH "CONFORMING TO" .SH "CONFORMING TO"
C99 C99
.SH "SEE ALSO" .SH "SEE ALSO"

View File

@ -1,7 +1,7 @@
.\" Copyright 2002 Walter Harms (walter.harms@informatik.uni-oldenburg.de) .\" Copyright 2002 Walter Harms (walter.harms@informatik.uni-oldenburg.de)
.\" Distributed under GPL .\" Distributed under GPL
.\" .\"
.TH CATAN 3 2002-07-28 "" "Linux Programmer's Manual" .TH CATAN 3 2007-12-26 "" "Linux Programmer's Manual"
.SH NAME .SH NAME
catan, catanf, catanl \- complex arc tangents catan, catanf, catanl \- complex arc tangents
.SH SYNOPSIS .SH SYNOPSIS
@ -17,12 +17,16 @@ Link with \fI\-lm\fP.
.SH DESCRIPTION .SH DESCRIPTION
The The
.BR catan () .BR catan ()
function calculates the complex atan(3). function calculates the complex arc tangent of
If y = catan(z), then z = ctan(y). .IR z .
If \fIy\ =\ catan(z)\fP, then \fIz\ =\ ctan(y)\fP.
The real part of y is chosen in the interval [\-pi/2,pi/2]. The real part of y is chosen in the interval [\-pi/2,pi/2].
.LP .LP
One has One has:
catan(z) = 1 / 2i clog((1 + iz) / (1 \- iz)). .nf
catan(z) = 1 / 2i clog((1 + iz) / (1 \- iz))
.fi
.SH "CONFORMING TO" .SH "CONFORMING TO"
C99 C99
.SH "SEE ALSO" .SH "SEE ALSO"