man-pages/man3/ccosh.3

32 lines
737 B
Groff
Raw Normal View History

2004-11-03 13:51:07 +00:00
.\" Copyright 2002 Walter Harms (walter.harms@informatik.uni-oldenburg.de)
.\" Distributed under GPL
.\"
.TH CCOSH 3 2008-08-11 "" "Linux Programmer's Manual"
2004-11-03 13:51:07 +00:00
.SH NAME
ccosh, ccoshf, ccoshl \- complex hyperbolic cosine
.SH SYNOPSIS
.B #include <complex.h>
.sp
.BI "double complex ccosh(double complex " z ");"
.br
2004-11-03 13:51:07 +00:00
.BI "float complex ccoshf(float complex " z ");"
.br
2004-11-03 13:51:07 +00:00
.BI "long double complex ccoshl(long double complex " z ");"
.sp
2007-07-21 05:25:03 +00:00
Link with \fI\-lm\fP.
2004-11-03 13:51:07 +00:00
.SH DESCRIPTION
2007-12-24 14:23:27 +00:00
The complex hyperbolic cosine function is defined as:
2007-12-24 11:29:54 +00:00
.nf
ccosh(z) = (exp(z)+exp(\-z))/2
.fi
.SH VERSIONS
These functions first appeared in glibc in version 2.1.
2004-11-03 13:51:07 +00:00
.SH "CONFORMING TO"
C99.
2004-11-03 13:51:07 +00:00
.SH "SEE ALSO"
.BR cabs (3),
.BR csinh (3),
.BR ctanh (3),
2006-04-21 01:24:06 +00:00
.BR complex (7)