]> git.ipfire.org Git - thirdparty/man-pages.git/blobdiff - man3/catanh.3
fanotify_init.2, fanotify.7: Document FAN_REPORT_TID
[thirdparty/man-pages.git] / man3 / catanh.3
index 4681b9d168721a4b0540a0d29821ebb1045d15d0..ff9a2434bf44ba50ceed4af5b1e06115049927f3 100644 (file)
 catanh, catanhf, catanhl \- complex arc tangents hyperbolic
 .SH SYNOPSIS
 .B #include <complex.h>
-.sp
+.PP
 .BI "double complex catanh(double complex " z );
 .br
 .BI "float complex catanhf(float complex " z );
 .br
 .BI "long double complex catanhl(long double complex " z );
-.sp
+.PP
 Link with \fI\-lm\fP.
 .SH DESCRIPTION
 These functions calculate the complex arc hyperbolic tangent of
@@ -25,10 +25,10 @@ If \fIy\ =\ catanh(z)\fP, then \fIz\ =\ ctanh(y)\fP.
 The imaginary part of
 .I y
 is chosen in the interval [\-pi/2,pi/2].
-.LP
+.PP
 One has:
+.PP
 .nf
-
     catanh(z) = 0.5 * (clog(1 + z) \- clog(1 \- z))
 .fi
 .SH VERSIONS
@@ -50,7 +50,7 @@ T}    Thread safety   MT-Safe
 .SH CONFORMING TO
 C99, POSIX.1-2001, POSIX.1-2008.
 .SH EXAMPLE
-.nf
+.EX
 /* Link with "\-lm" */
 
 #include <complex.h>
@@ -78,7 +78,7 @@ main(int argc, char *argv[])
 
     exit(EXIT_SUCCESS);
 }
-.fi
+.EE
 .SH SEE ALSO
 .BR atanh (3),
 .BR cabs (3),