OSDN Git Service

184c759f0746f413722bdbbd3ad0484c6adb422b
[linuxjm/LDP_man-pages.git] / draft / man3 / clog2.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-24, Akihiro MOTOKI <amotoki@dd.iij4u.or.jp>
7 .\" Updated 2005-02-26, Akihiro MOTOKI <amotoki@dd.iij4u.or.jp>
8 .\" Updated 2007-01-05, Akihiro MOTOKI, catch up to LDP v2.43
9 .\"
10 .\"WORD:        logarithm       自然対数
11 .\"WORD:        base            底
12 .\"
13 .TH CLOG2 3 2008-08-11 "" "Linux Programmer's Manual"
14 .\"O .SH NAME
15 .SH 名前
16 .\"O clog2, clog2f, clog2l \- base-2 logarithm of a complex number
17 clog2, clog2f, clog2l \- 底が 2 の複素数の対数
18 .\"O .SH SYNOPSIS
19 .SH 書式
20 .B #include <complex.h>
21 .sp
22 .BI "double complex clog2(double complex " z );
23 .br
24 .BI "float complex clog2f(float complex " z );
25 .br
26 .BI "long double complex clog2l(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 call
33 .\"O .I clog2(z)
34 .\"O is equivalent to
35 .\"O .IR clog(z)/log(2) .
36 .I clog2(z)
37 の呼び出しは
38 .I clog(z)/log(2)
39 と等価である。
40
41 .\"O The other functions perform the same task for
42 .\"O .I float
43 .\"O and
44 .\"O .IR "long double" .
45 他の関数は同じ機能を持つ
46 .I float
47 版と
48 .I "long double"
49 版である。
50
51 .\"O Note that
52 .\"O .I z
53 .\"O close to zero will cause an overflow.
54 .I z
55 として 0 に近い値を入れると、オーバーフローを起こすため、
56 注意が必要である。
57 .\"O .SH "CONFORMING TO"
58 .SH 準拠
59 .\"O These function names are reserved for future use in C99.
60 これらの関数名は C99 で今後使用するために予約されている。
61 .\"O .SH AVAILABILITY
62 .SH 可用性
63 .\"O Not yet in glibc, as at version 2.8.
64 .\"O .\" But reserved in NAMESPACE.
65 バージョン 2.8 時点では、glibc にはまだ実装されていない。
66 .\" しかし、名前空間は予約済である。
67 .\"O .SH "SEE ALSO"
68 .SH 関連項目
69 .BR cabs (3),
70 .BR cexp (3),
71 .BR clog (3),
72 .BR clog10 (3),
73 .BR complex (7)