OSDN Git Service

d04b077506828f0de00d5fa130f339f79274a4e8
[linuxjm/LDP_man-pages.git] / draft / man3 / ctanh.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:        hyperbolic      双曲(線の)
10 .\"WORD:        sine            正弦
11 .\"WORD:        cosine          余弦
12 .\"WORD:        tangent         正接
13 .\" 
14 .TH CTANH 3 2008-08-11 "" "Linux Programmer's Manual"
15 .\"O .SH NAME
16 .\"O ctanh, ctanhf, ctanhl \- complex hyperbolic tangent
17 .SH 名前
18 ctanh, ctanhf, ctanhl \- 複素数の双曲線正接 (hyperbolic tangent)
19 .\"O .SH SYNOPSIS
20 .SH 書式
21 .B #include <complex.h>
22 .sp
23 .BI "double complex ctanh(double complex " z ");"
24 .br
25 .BI "float complex ctanhf(float complex " z );
26 .br
27 .BI "long double complex ctanhl(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 tangent function is defined
34 .\"O mathematically as:
35 複素数の双曲線正接 (hyperbolic tangent) 関数は以下のように定義される。
36 .nf
37
38     ctanh(z) = csinh(z) / ccosh(z)
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 catanh (3),
51 .BR ccosh (3),
52 .BR csinh (3),
53 .BR complex (7)