OSDN Git Service

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