Blame man3/ccosh.3

Packit 7cfc04
.\" Copyright 2002 Walter Harms (walter.harms@informatik.uni-oldenburg.de)
Packit 7cfc04
.\"
Packit 7cfc04
.\" %%%LICENSE_START(GPL_NOVERSION_ONELINE)
Packit 7cfc04
.\" Distributed under GPL
Packit 7cfc04
.\" %%%LICENSE_END
Packit 7cfc04
.\"
Packit 7cfc04
.TH CCOSH 3 2017-09-15 "" "Linux Programmer's Manual"
Packit 7cfc04
.SH NAME
Packit 7cfc04
ccosh, ccoshf, ccoshl \- complex hyperbolic cosine
Packit 7cfc04
.SH SYNOPSIS
Packit 7cfc04
.B #include <complex.h>
Packit 7cfc04
.PP
Packit 7cfc04
.BI "double complex ccosh(double complex " z ");"
Packit 7cfc04
.br
Packit 7cfc04
.BI "float complex ccoshf(float complex " z ");"
Packit 7cfc04
.br
Packit 7cfc04
.BI "long double complex ccoshl(long double complex " z ");"
Packit 7cfc04
.PP
Packit 7cfc04
Link with \fI\-lm\fP.
Packit 7cfc04
.SH DESCRIPTION
Packit 7cfc04
These functions calculate the complex hyperbolic cosine of
Packit 7cfc04
.IR z .
Packit 7cfc04
.PP
Packit 7cfc04
The complex hyperbolic cosine function is defined as:
Packit 7cfc04
.PP
Packit 7cfc04
.nf
Packit 7cfc04
    ccosh(z) = (exp(z)+exp(\-z))/2
Packit 7cfc04
.fi
Packit 7cfc04
.SH VERSIONS
Packit 7cfc04
These functions first appeared in glibc in version 2.1.
Packit 7cfc04
.SH CONFORMING TO
Packit 7cfc04
C99, POSIX.1-2001, POSIX.1-2008.
Packit 7cfc04
.SH SEE ALSO
Packit 7cfc04
.BR cabs (3),
Packit 7cfc04
.BR cacosh (3),
Packit 7cfc04
.BR csinh (3),
Packit 7cfc04
.BR ctanh (3),
Packit 7cfc04
.BR complex (7)
Packit 7cfc04
.SH COLOPHON
Packit 7cfc04
This page is part of release 4.15 of the Linux
Packit 7cfc04
.I man-pages
Packit 7cfc04
project.
Packit 7cfc04
A description of the project,
Packit 7cfc04
information about reporting bugs,
Packit 7cfc04
and the latest version of this page,
Packit 7cfc04
can be found at
Packit 7cfc04
\%https://www.kernel.org/doc/man\-pages/.