OSDN Git Service

ba9617edf328d072854f87b5d3ac9f74ad7ae075
[linuxjm/LDP_man-pages.git] / draft / man3 / ccosh.3
1 .\" Copyright 2002 Walter Harms (walter.harms@informatik.uni-oldenburg.de)
2 .\" Distributed under GPL
3 .\"
4 .\" Japanese Version Copyright (c) 2003  Akihiro MOTOKI
5 .\"         all rights reserved.
6 .\" Translated Mon Jul 28 23:42:41 JST 2003
7 .\"         by Akihiro MOTOKI <amotoki@dd.iij4u.or.jp>
8 .\"
9 .\"WORD:        hyperbolic      双曲(線の)
10 .\"WORD:        sine            正弦
11 .\"WORD:        cosine          余弦
12 .\"WORD:        tangent         正接
13 .\"
14 .TH CCOSH 3 2008-08-06 "" "Linux Programmer's Manual"
15 .\"O .SH NAME
16 .SH 名前
17 .\"O ccosh, ccoshf, ccoshl \- complex hyperbolic cosine
18 ccosh, ccoshf, ccoshl \- 複素数の双曲線余弦 (hyperbolic cosine)
19 .\"O .SH SYNOPSIS
20 .SH 書式
21 .B #include <complex.h>
22 .sp
23 .BI "double complex ccosh(double complex " z ");"
24 .br
25 .BI "float complex ccoshf(float complex " z ");"
26 .br
27 .BI "long double complex ccoshl(long double complex " z ");"
28 .sp
29 .\"O Link with \fI\-lm\fP.
30 \fI\-lm\fP でリンクする。
31 .\"O .SH DESCRIPTION
32 .SH 説明
33 .\"O The complex hyperbolic cosine function is defined as:
34 複素数の双曲線余弦 (hyperbolic cosine) 関数 ccosh(z) は
35 以下のように定義される。
36 .nf
37
38     ccosh(z) = (exp(z)+exp(\-z))/2
39 .fi
40 .\"O .SH VERSIONS
41 .SH バージョン
42 .\"O These functions first appeared in glibc in version 2.1.
43 これらの関数は glibc バージョン 2.1 で初めて登場した。
44 .\"O .SH "CONFORMING TO"
45 .SH 準拠
46 C99.
47 .\"O .SH "SEE ALSO"
48 .SH 関連項目
49 .BR cabs (3),
50 .BR cacosh (3),
51 .BR csinh (3),
52 .BR ctanh (3),
53 .BR complex (7)