]> git.ipfire.org Git - thirdparty/man-pages.git/blame - man3/csinh.3
Many pages: Fix style issues reported by `make lint-groff`
[thirdparty/man-pages.git] / man3 / csinh.3
CommitLineData
fea681da 1.\" Copyright 2002 Walter Harms (walter.harms@informatik.uni-oldenburg.de)
2297bf0e 2.\"
95fb8859 3.\" SPDX-License-Identifier: GPL-1.0-or-later
fea681da 4.\"
1ae6b2c7 5.TH CSINH 3 2021-03-22 GNU "Linux Programmer's Manual"
fea681da
MK
6.SH NAME
7csinh, csinhf, csinhl \- complex hyperbolic sine
2af19291
AC
8.SH LIBRARY
9Math library
8fc3b2cf 10.RI ( libm ", " \-lm )
fea681da 11.SH SYNOPSIS
c7db92b9 12.nf
fea681da 13.B #include <complex.h>
68e4db0a 14.PP
1ae6b2c7
AC
15.BI "double complex csinh(double complex " z );
16.BI "float complex csinhf(float complex " z );
17.BI "long double complex csinhl(long double complex " z );
c7db92b9 18.fi
fea681da 19.SH DESCRIPTION
b571cae4
MK
20These functions calculate the complex hyperbolic sine of
21.IR z .
847e0d88 22.PP
92499e06 23The complex hyperbolic sine function is defined as:
207050fa 24.PP
1ae6b2c7
AC
25.in +4n
26.EX
27csinh(z) = (exp(z)\-exp(\-z))/2
28.EE
29.in
f0d7ce1d
MK
30.SH VERSIONS
31These functions first appeared in glibc in version 2.1.
31652f0b
MS
32.SH ATTRIBUTES
33For an explanation of the terms used in this section, see
34.BR attributes (7).
c466875e
MK
35.ad l
36.nh
31652f0b
MS
37.TS
38allbox;
c466875e 39lbx lb lb
31652f0b
MS
40l l l.
41Interface Attribute Value
42T{
43.BR csinh (),
44.BR csinhf (),
45.BR csinhl ()
46T} Thread safety MT-Safe
47.TE
c466875e
MK
48.hy
49.ad
847e0d88 50.sp 1
47297adb 51.SH CONFORMING TO
9a74e018 52C99, POSIX.1-2001, POSIX.1-2008.
47297adb 53.SH SEE ALSO
fea681da 54.BR cabs (3),
f54fb0fa 55.BR casinh (3),
fea681da
MK
56.BR ccosh (3),
57.BR ctanh (3),
a8bda636 58.BR complex (7)