OSDN Git Service

1dc4441643a6f7d196a249934d3c01f39c18de46
[linuxjm/LDP_man-pages.git] / draft / man3 / csinh.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:54:24 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 CSINH 3 2008-08-11 "" "Linux Programmer's Manual"
15 .\"O .SH NAME
16 .SH 名前
17 .\"O csinh, csinhf, csinhl \- complex hyperbolic sine
18 csinh, csinhf, csinhl \- 複素数の双曲線正弦 (hyperbolic sine)
19 .\"O .SH SYNOPSIS
20 .SH 書式
21 .B #include <complex.h>
22 .sp
23 .BI "double complex csinh(double complex " z ");"
24 .br
25 .BI "float complex csinhf(float complex " z ");"
26 .br
27 .BI "long double complex csinhl(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 sine function is defined as:
34 複素数の双曲線正弦 (hyperbolic sine) 関数 sinh(z) は以下のように定義される。
35 .nf
36
37     csinh(z) = (exp(z)\-exp(\-z))/2
38 .fi
39 .\"O .SH VERSIONS
40 .SH バージョン
41 .\"O These functions first appeared in glibc in version 2.1.
42 これらの関数は glibc バージョン 2.1 で初めて登場した。
43 .\"O .SH "CONFORMING TO"
44 .SH 準拠
45 C99.
46 .\"O .SH "SEE ALSO"
47 .SH 関連項目
48 .BR cabs (3),
49 .BR casinh (3),
50 .BR ccosh (3),
51 .BR ctanh (3),
52 .BR complex (7)