]> git.ipfire.org Git - thirdparty/man-pages.git/blame - man3/casinh.3
Import of man-pages 1.70
[thirdparty/man-pages.git] / man3 / casinh.3
CommitLineData
fea681da
MK
1.\" Copyright 2002 Walter Harms (walter.harms@informatik.uni-oldenburg.de)
2.\" Distributed under GPL
3.\"
4.TH CASINH 3 2002-07-28 "" "complex math routines"
5.SH NAME
6casinh, casinhf, casinhl \- complex arc sine hyperbolic
7.SH SYNOPSIS
8.B #include <complex.h>
9.sp
10.BI "double complex casinh(double complex " z );
11.sp
12.BI "float complex casinhf(float complex " z );
13.sp
14.BI "long double complex casinhl(long double complex " z );
15.sp
16Link with \-lm.
17.SH DESCRIPTION
18The casinh() function calculates the complex asinh().
19If y = casinh(z), then z = csinh(y).
20The imaginary part of y is chosen in the interval [-pi/2,pi/2].
21.LP
22One has casinh(z) = clog(z+csqrt(z*z+1)).
23.SH "CONFORMING TO"
24C99
25.SH "SEE ALSO"
26.BR asinh (3),
27.BR cabs (3),
28.BR cimag (3),
29.BR complex (5)