OSDN Git Service

(split) LDP: draft snapshot generated from latest ja.po files.
[linuxjm/LDP_man-pages.git] / draft / man3 / significand.3
1 .\" Copyright 2002 Walter Harms (walter.harms@informatik.uni-oldenburg.de)
2 .\" Distributed under GPL
3 .\" heavily based on glibc infopages, copyright Free Software Foundation
4 .\"*******************************************************************
5 .\"
6 .\" This file was generated with po4a. Translate the source file.
7 .\"
8 .\"*******************************************************************
9 .TH SIGNIFICAND 3 2009\-02\-04 GNU "Linux Programmer's Manual"
10 .SH 名前
11 significand, significandf, significandl \- 浮動小数点数の仮数 (mantissa) を取得する
12 .SH 書式
13 \fB#include <math.h>\fP
14 .sp
15 \fBdouble significand(double \fP\fIx\fP\fB);\fP
16 .br
17 \fBfloat significandf(float \fP\fIx\fP\fB);\fP
18 .br
19 \fBlong double significandl(long double \fP\fIx\fP\fB);\fP
20 .sp
21 \fI\-lm\fP でリンクする。
22 .sp
23 .in -4n
24 glibc 向けの機能検査マクロの要件 (\fBfeature_test_macros\fP(7)  参照):
25 .in
26 .sp
27 .ad l
28 \fBsignificand\fP(), \fBsignificandf\fP(), \fBsignificandl\fP():
29 .RS 4
30 _SVID_SOURCE || _BSD_SOURCE
31 .RE
32 .ad b
33 .SH 説明
34 \fBsignificand\fP()  関数は \fIx\fP の仮数を [1,2) の範囲にして返す。 これは、以下と等しい。
35 .sp
36 .in +4n
37 scalb(x, (double) \-ilogb(x))
38 .in
39 .PP
40 この関数は主に IEEE 754 への準拠を調べる標準テストで使われる。
41 .SH 準拠
42 .\" .SH HISTORY
43 .\" This function came from BSD.
44 これらの関数は非標準である。。 \fIdouble\fP 版は他の多くのシステムでも利用可能である。
45 .SH 関連項目
46 \fBilogb\fP(3), \fBscalb\fP(3)