OSDN Git Service

Retire LDP man-pages repository
[linuxjm/LDP_man-pages.git] / release / man3 / expm1.3
diff --git a/release/man3/expm1.3 b/release/man3/expm1.3
deleted file mode 100644 (file)
index 197f874..0000000
+++ /dev/null
@@ -1,140 +0,0 @@
-.\" Copyright 1995 Jim Van Zandt <jrv@vanzandt.mv.com>
-.\" and Copyright 2008, Linux Foundation, written by Michael Kerrisk
-.\"     <mtk.manpages@gmail.com>
-.\"
-.\" %%%LICENSE_START(VERBATIM)
-.\" Permission is granted to make and distribute verbatim copies of this
-.\" manual provided the copyright notice and this permission notice are
-.\" preserved on all copies.
-.\"
-.\" Permission is granted to copy and distribute modified versions of this
-.\" manual under the conditions for verbatim copying, provided that the
-.\" entire resulting derived work is distributed under the terms of a
-.\" permission notice identical to this one.
-.\"
-.\" Since the Linux kernel and libraries are constantly changing, this
-.\" manual page may be incorrect or out-of-date.  The author(s) assume no
-.\" responsibility for errors or omissions, or for damages resulting from
-.\" the use of the information contained herein.  The author(s) may not
-.\" have taken the same level of care in the production of this manual,
-.\" which is licensed free of charge, as they might when working
-.\" professionally.
-.\"
-.\" Formatted or processed versions of this manual, if unaccompanied by
-.\" the source, must acknowledge the copyright and authors of this work.
-.\" %%%LICENSE_END
-.\"
-.\" Modified 2002-07-27 Walter Harms
-.\"    (walter.harms@informatik.uni-oldenburg.de)
-.\"
-.\"*******************************************************************
-.\"
-.\" This file was generated with po4a. Translate the source file.
-.\"
-.\"*******************************************************************
-.\"
-.\" Japanese Version Copyright (c) 1998 NAKANO Takeo all rights reserved.
-.\" Translated Mon May 18 1998 by NAKANO Takeo <nakano@apm.seikei.ac.jp>
-.\" Update Tue Sep 23 2003 by Akihiro MOTOKI <amotoki@dd.iij4u.or.jp>
-.\" Updated 2008-09-16, Akihiro MOTOKI <amotoki@dd.iij4u.or.jp>
-.\"
-.TH EXPM1 3 2013\-10\-14 "" "Linux Programmer's Manual"
-.SH 名前
-expm1, expm1f, expm1l \- 引き数の指数から 1 を引いた値
-.SH 書式
-.nf
-\fB#include <math.h>\fP
-.sp
-\fBdouble expm1(double \fP\fIx\fP\fB);\fP
-.br
-\fBfloat expm1f(float \fP\fIx\fP\fB);\fP
-.br
-\fBlong double expm1l(long double \fP\fIx\fP\fB);\fP
-.sp
-.fi
-\fI\-lm\fP でリンクする。
-.sp
-.in -4n
-glibc 向けの機能検査マクロの要件 (\fBfeature_test_macros\fP(7)  参照):
-.in
-.sp
-.ad l
-\fBexpm1\fP():
-.RS 4
-_BSD_SOURCE || _SVID_SOURCE || _XOPEN_SOURCE\ >=\ 500 || _XOPEN_SOURCE\ &&\ _XOPEN_SOURCE_EXTENDED || _ISOC99_SOURCE || _POSIX_C_SOURCE\ >=\ 200112L;
-.br
-or \fIcc\ \-std=c99\fP
-.RE
-.br
-\fBexpm1f\fP(), \fBexpm1l\fP():
-.RS 4
-_BSD_SOURCE || _SVID_SOURCE || _XOPEN_SOURCE\ >=\ 600 || _ISOC99_SOURCE
-|| _POSIX_C_SOURCE\ >=\ 200112L;
-.br
-or \fIcc\ \-std=c99\fP
-.RE
-.ad b
-.SH 説明
-\fBexpm1(\fP\fIx\fP\fB)\fP は以下と等しい値を返す。
-.nf
-
-    exp(x) \- 1
-
-.fi
-\fIexp(x) \- 1\fP の計算には、\fIx\fP が 0 の近傍で引き算時の桁落ちのために
-不正確となるような場合でも正確な値が計算できる方法が用いられる。
-.SH 返り値
-成功すると、これらの関数は \fIexp(x)\ \-\ 1\fP を返す。
-
-\fIx\fP が NaN の場合、NaN が返される。
-
-\fIx\fP が +0 (\-0) の場合、+0 (\-0) が返される。
-
-\fIx\fP が正の無限大の場合、正の無限大が返される。
-
-\fIx\fP が負の無限大の場合、\-1 が返される。
-
-結果がオーバーフローする場合、範囲エラー (range error) が発生し、 各関数はそれぞれ \-\fBHUGE_VAL\fP,
-\-\fBHUGE_VALF\fP, \-\fBHUGE_VALL\fP を返す。
-.SH エラー
-これらの関数を呼び出した際にエラーが発生したかの判定方法についての情報は \fBmath_error\fP(7)  を参照のこと。
-.PP
-以下のエラーが発生する可能性がある。
-.TP 
-範囲エラー (range error)、オーバーフローの場合
-.\"
-.\" POSIX.1 specifies an optional range error (underflow) if
-.\" x is subnormal.  Glibc does not implement this.
-\fIerrno\fP に \fBERANGE\fP が設定される (「バグ」の節も参照)。 オーバーフロー浮動小数点例外 (\fBFE_OVERFLOW\fP)
-が上がる。
-.SH 属性
-.SS "マルチスレッディング (pthreads(7) 参照)"
-関数 \fBexpm1\fP(), \fBexpm1f\fP(), \fBexpm1l\fP() はスレッドセーフである。
-.SH 準拠
-.\" BSD.
-C99, POSIX.1\-2001.
-.SH バグ
-.\" FIXME .
-.\" Bug raised: http://sources.redhat.com/bugzilla/show_bug.cgi?id=6778
-\fIx\fP が負の大きな値の場合 (この場合には関数の結果は \-1 に近付いていく)、 \fBexpm1\fP()
-は間違ってアンダーフロー浮動小数点例外を上げることがある。
-
-.\" FIXME .
-.\" Bug raised: http://sources.redhat.com/bugzilla/show_bug.cgi?id=6814
-.\" e.g., expm1(1e5) through expm1(1.00199970127e5),
-.\" but not expm1(1.00199970128e5) and beyond.
-\fIx\fP が正の大きな値の場合、 \fBexpm1\fP()  は期待通りのオーバーフロー例外だけでなく 間違って不正 (invalid)
-浮動小数点例外を上げ、 正の無限大ではなく NaN を返すことがある。
-
-.\" It looks like the fix was in 2.11, or possibly 2.12.
-.\" I have no test system for 2.11, but 2.12 passes.
-.\" From the source (sysdeps/i386/fpu/s_expm1.S) it looks
-.\" like the changes were in 2.11.
-.\" http://sources.redhat.com/bugzilla/show_bug.cgi?id=6788
-バージョン 2.11 より前の glibc の実装では、 範囲エラーが発生した場合に、 \fIerrno\fP に \fBERANGE\fP が設定されなかった。
-.SH 関連項目
-\fBexp\fP(3), \fBlog\fP(3), \fBlog1p\fP(3)
-.SH この文書について
-この man ページは Linux \fIman\-pages\fP プロジェクトのリリース 3.79 の一部
-である。プロジェクトの説明とバグ報告に関する情報は
-http://www.kernel.org/doc/man\-pages/ に書かれている。