OSDN Git Service

a17ca047b57505bf3b3e39b30c065cef301dcd47
[linuxjm/LDP_man-pages.git] / draft / man3 / clog10.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 CLOG10 3 2008-08-11 "" "Linux Programmer's Manual"
14 .\"O .SH NAME
15 .SH 名前
16 .\"O clog10, clog10f, clog10l \- base-10 logarithm of a complex number
17 clog10, clog10f, clog10l \- 底が 10 の複素数の対数
18 .\"O .SH SYNOPSIS
19 .SH 書式
20 .\"O .BR "#define _GNU_SOURCE" "         /* See feature_test_macros(7) */"
21 .BR "#define _GNU_SOURCE" "         /* feature_test_macros(7) 参照 */"
22 .br
23 .B #include <complex.h>
24 .sp
25 .BI "double complex clog10(double complex " z );
26 .br
27 .BI "float complex clog10f(float complex " z );
28 .br
29 .BI "long double complex clog10l(long double complex " z );
30 .sp
31 .\"O Link with \fI\-lm\fP.
32 \fI\-lm\fP でリンクする。
33 .\"O .SH DESCRIPTION
34 .SH 説明
35 .\"O The call
36 .\"O .I clog10(z)
37 .\"O is equivalent to
38 .\"O .IR clog(z)/log(10) .
39 .I clog10(z)
40 の呼び出しは
41 .I clog(z)/log(10)
42 と等価である。
43 .\"O The other functions perform the same task for
44 .\"O .I float
45 .\"O and
46 .\"O .IR "long double" .
47 他の関数は同じ機能を持つ
48 .I float
49 版と
50 .I "long double"
51 版である。
52
53 .\"O Note that
54 .\"O .I z
55 .\"O close to zero will cause an overflow.
56 .I z
57 として 0 に近い値を入れると、オーバーフローを起こすため、
58 注意が必要である。
59 .\"O .SH VERSIONS
60 .SH バージョン
61 .\"O These functions first appeared in glibc in version 2.1.
62 これらの関数は glibc バージョン 2.1 で初めて登場した。
63 .\"O .SH "CONFORMING TO"
64 .SH 準拠
65 .\"O This function is a GNU extension.
66 .\"O It is reserved for future use in C99.
67 この関数は GNU による拡張である。
68 C99 では今後のために予約されている。
69 .\"O .SH "SEE ALSO"
70 .SH 関連項目
71 .BR cabs (3),
72 .BR cexp (3),
73 .BR clog (3),
74 .BR clog2 (3),
75 .BR complex (7)