OSDN Git Service

(split) LDP: Update drafts from ja.po of LDP v3.50
[linuxjm/LDP_man-pages.git] / release / man3 / exp10.3
1 .\" Copyright 1993 David Metcalfe (david@prism.demon.co.uk)
2 .\" and Copyright 2008, Linux Foundation, written by Michael Kerrisk
3 .\"     <mtk.manpages@gmail.com>
4 .\"
5 .\" Permission is granted to make and distribute verbatim copies of this
6 .\" manual provided the copyright notice and this permission notice are
7 .\" preserved on all copies.
8 .\"
9 .\" Permission is granted to copy and distribute modified versions of this
10 .\" manual under the conditions for verbatim copying, provided that the
11 .\" entire resulting derived work is distributed under the terms of a
12 .\" permission notice identical to this one.
13 .\"
14 .\" Since the Linux kernel and libraries are constantly changing, this
15 .\" manual page may be incorrect or out-of-date.  The author(s) assume no
16 .\" responsibility for errors or omissions, or for damages resulting from
17 .\" the use of the information contained herein.  The author(s) may not
18 .\" have taken the same level of care in the production of this manual,
19 .\" which is licensed free of charge, as they might when working
20 .\" professionally.
21 .\"
22 .\" Formatted or processed versions of this manual, if unaccompanied by
23 .\" the source, must acknowledge the copyright and authors of this work.
24 .\"
25 .\" References consulted:
26 .\"     Linux libc source code
27 .\"     Lewine's _POSIX Programmer's Guide_ (O'Reilly & Associates, 1991)
28 .\"     386BSD man pages
29 .\" Modified 1993-07-24 by Rik Faith (faith@cs.unc.edu)
30 .\" Modified 1995-08-14 by Arnt Gulbrandsen <agulbra@troll.no>
31 .\" Modified 2002-07-27 by Walter Harms
32 .\"     (walter.harms@informatik.uni-oldenburg.de)
33 .\"*******************************************************************
34 .\"
35 .\" This file was generated with po4a. Translate the source file.
36 .\"
37 .\"*******************************************************************
38 .TH EXP10 3 2008\-08\-11 GNU "Linux Programmer's Manual"
39 .SH 名前
40 exp10, exp10f, exp10l \- 基数が 10 の指数関数
41 .SH 書式
42 .nf
43 \fB#define _GNU_SOURCE\fP         /* feature_test_macros(7) 参照 */
44 .br
45 \fB#include <math.h>\fP
46 .sp
47 \fBdouble exp10(double \fP\fIx\fP\fB);\fP
48 .br
49 \fBfloat exp10f(float \fP\fIx\fP\fB);\fP
50 .br
51 \fBlong double exp10l(long double \fP\fIx\fP\fB);\fP
52 .fi
53 .sp
54 \fI\-lm\fP でリンクする。
55 .SH 説明
56 \fBexp10\fP()  関数は 10 の \fIx\fP 乗の値を返す。
57 .SH 返り値
58 成功すると、これらの関数は 10 の \fIx\fP 乗を返す。
59
60 無限大や NaN の扱いや、オーバーフローとアンダーフローなどの さまざまな特別な状況については、 \fBexp\fP(3)  を参照のこと。
61 .SH エラー
62 これらの関数を呼び出した際にエラーが発生したかの判定方法についての情報は \fBmath_error\fP(7)  を参照のこと。
63
64 .\" FIXME . exp10 doesn't give ERANGE for an underflow, unlike exp() and exp2()
65 .\" Bug raised: http://sources.redhat.com/bugzilla/show_bug.cgi?id=6787
66 これらの関数で発生するエラーについては、 \fBexp\fP(3)  を参照のこと。
67 .SH バージョン
68 これらの関数は glibc バージョン 2.1 で初めて登場した。
69 .SH 準拠
70 これらの関数は GNU による拡張である。
71 .SH 関連項目
72 \fBcbrt\fP(3), \fBexp\fP(3), \fBexp2\fP(3), \fBlog10\fP(3), \fBsqrt\fP(3)
73 .SH この文書について
74 この man ページは Linux \fIman\-pages\fP プロジェクトのリリース 3.41 の一部
75 である。プロジェクトの説明とバグ報告に関する情報は
76 http://www.kernel.org/doc/man\-pages/ に書かれている。