OSDN Git Service

db539bc3dac970a9081557e35c9eac2e0d60f557
[linuxjm/LDP_man-pages.git] / draft / man3 / ccos.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 Wed Jul 23 05:24:15 JST 2003
7 .\"         by Akihiro MOTOKI <amotoki@dd.iij4u.or.jp>
8 .\"
9 .\"WORD:        sine            正弦
10 .\"WORD:        cosine          余弦
11 .\"WORD:        tangent         正接
12 .\"
13 .TH CCOS 3 2008-08-06 "" "Linux Programmer's Manual"
14 .\"O .SH NAME
15 .\"O ccos, ccosf, ccosl \- complex cosine function
16 .SH 名前
17 ccos, ccosf, ccosl \- 複素数の余弦 (cosine)
18 .\"O .SH SYNOPSIS
19 .SH 書式
20 .B #include <complex.h>
21 .sp
22 .BI "double complex ccos(double complex " z ");"
23 .br
24 .BI "float complex ccosf(float complex " z ");"
25 .br
26 .BI "long double complex ccosl(long double complex " z ");"
27 .sp
28 .\"O Link with \fI\-lm\fP.
29 \fI\-lm\fP でリンクする。
30 .\"O .SH DESCRIPTION
31 .SH 説明
32 .\"O The complex cosine function is defined as:
33 複素数の余弦 (cosine) 関数 ccos(z) は以下のように定義される。
34 .nf
35
36     ccos(z) = (exp(i * z) + exp(\-i * z)) / 2
37 .fi
38 .\"O .SH VERSIONS
39 .SH バージョン
40 .\"O These functions first appeared in glibc in version 2.1.
41 これらの関数は glibc バージョン 2.1 で初めて登場した。
42 .\"O .SH "CONFORMING TO"
43 .SH 準拠
44 C99.
45 .\"O .SH "SEE ALSO"
46 .SH 関連項目
47 .BR cabs (3),
48 .BR cacos (3),
49 .BR csin (3),
50 .BR ctan (3),
51 .BR complex (7)