OSDN Git Service

ff6706033a545b7b2b62a02b297d1ae40db5a19e
[linuxjm/LDP_man-pages.git] / draft / man3 / ctan.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 2003-07-23, Akihiro MOTOKI <amotoki@dd.iij4u.or.jp>
7 .\" Updated 2005-02-21, Akihiro MOTOKI
8 .\" 
9 .\"WORD:        sine            正弦
10 .\"WORD:        cosine          余弦
11 .\"WORD:        tangent         正接
12 .\" 
13 .TH CTAN 3 2008-08-11 "" "Linux Programmer's Manual"
14 .\"O .SH NAME
15 .\"O ctan, ctanf, ctanl \- complex tangent function
16 .SH 名前
17 ctan, ctanf, ctanl \- 複素数の正接 (tangent) 関数
18 .\"O .SH SYNOPSIS
19 .SH 書式
20 .B #include <complex.h>
21 .sp
22 .BI "double complex ctan(double complex " z ");"
23 .br
24 .BI "float complex ctanf(float complex " z );
25 .br
26 .BI "long double complex ctanl(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 tangent function is defined as:
33 複素数の正接 (tangent) 関数 ctan(z) は以下のように定義される。
34 .nf
35
36     ctan(z) = csin(z) / ccos(z)
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 catan (3),
49 .BR ccos (3),
50 .BR csin (3),
51 .BR complex (7)