1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61
|
.\" Copyright 2002 Walter Harms (walter.harms@informatik.uni-oldenburg.de)
.\"
.\" %%%LICENSE_START(GPL_NOVERSION_ONELINE)
.\" Distributed under GPL
.\" %%%LICENSE_END
.\"
.\" heavily based on glibc infopages, copyright Free Software Foundation
.\"
.\"*******************************************************************
.\"
.\" This file was generated with po4a. Translate the source file.
.\"
.\"*******************************************************************
.\"
.\" Japanese Version Copyright (c) 2005 Yuichi SATO
.\" all rights reserved.
.\" Translated Tue Feb 1 07:40:41 JST 2005
.\" by Yuichi SATO <ysato444@yahoo.co.jp>
.\"
.TH SIGNIFICAND 3 2009\-02\-04 GNU "Linux Programmer's Manual"
.SH 名前
significand, significandf, significandl \- 浮動小数点数の仮数 (mantissa) を取得する
.SH 書式
\fB#include <math.h>\fP
.sp
\fBdouble significand(double \fP\fIx\fP\fB);\fP
.br
\fBfloat significandf(float \fP\fIx\fP\fB);\fP
.br
\fBlong double significandl(long double \fP\fIx\fP\fB);\fP
.sp
\fI\-lm\fP でリンクする。
.sp
.in -4n
glibc 向けの機能検査マクロの要件 (\fBfeature_test_macros\fP(7) 参照):
.in
.sp
.ad l
\fBsignificand\fP(), \fBsignificandf\fP(), \fBsignificandl\fP():
.RS 4
_SVID_SOURCE || _BSD_SOURCE
.RE
.ad b
.SH 説明
\fBsignificand\fP() 関数は \fIx\fP の仮数を [1,2) の範囲にして返す。 これは、以下と等しい。
.sp
.in +4n
scalb(x, (double) \-ilogb(x))
.in
.PP
この関数は主に IEEE 754 への準拠を調べる標準テストで使われる。
.SH 準拠
.\" .SH HISTORY
.\" This function came from BSD.
これらの関数は非標準である。。 \fIdouble\fP 版は他の多くのシステムでも利用可能である。
.SH 関連項目
\fBilogb\fP(3), \fBscalb\fP(3)
.SH この文書について
この man ページは Linux \fIman\-pages\fP プロジェクトのリリース 3.79 の一部
である。プロジェクトの説明とバグ報告に関する情報は
http://www.kernel.org/doc/man\-pages/ に書かれている。
|