ilogbのヘルプ・マニュアル
日本語 英語
ilogb --help
man ilogb
ILOGB(3) Linux Programmer’s Manual ILOGB(3)
名前
ilogb, ilogbf, ilogbl - 浮動小数点数の指数部を整数として取得する
書式
#include
int ilogb(double x);
int ilogbf(float x);
int ilogbl(long double x);
-lm でリンクする。
glibc 向けの機能検査マクロの要件 (feature_test_macros(7) 参照):
ilogb(): _BSD_SOURCE || _SVID_SOURCE || _XOPEN_SOURCE >= 500 ||
_ISOC99_SOURCE; or cc -std=c99
ilogbf(), ilogbl(): _BSD_SOURCE || _SVID_SOURCE || _XOPEN_SOURCE >= 600
|| _ISOC99_SOURCE; or cc -std=c99
説明
こ れらの関数は引き数の指数部を符号付き整数として返す。エラーが起らなか
った場合、これらの関数は、対応する logb(3) 関数を int でキャストした も
のと等価である。
返り値
成功すると、これらの関数は x の指数部を符号付き整数として返す。
x がゼロの場合、領域エラー (domain error) が発生し、 FP_ILOGB0 が返され
る。
x が NaN の場合、領域エラー (domain error) が発生し、 FP_ILOGBNAN が 返
される。
x が負の無限大か正の無限大の場合、領域エラー (domain error) が発生し、
INT_MAX が返される。
エラー
これらの関数を呼び出した際にエラーが発生したかの判定方法についての情 報
は math_error(7) を参照のこと。
以下のエラーが発生する可能性がある。
領域エラー: x が 0 か NaN
不正 (invalid) 浮動小数点例外 (FE_INVALID) が上がる。
これらの関数は、この状況で errno を設定しない。
領域エラー: x が無限大
これらの関数は、この状況で errno を設定せず、例外も上げない。
準拠
C99, POSIX.1-2001.
関連項目
log(3), logb(3), significand(3)
2009-02-04 ILOGB(3)
ILOGB(3) Linux Programmer’s Manual ILOGB(3)
NAME
ilogb, ilogbf, ilogbl - get integer exponent of a floating-point value
SYNOPSIS
#include
int ilogb(double x);
int ilogbf(float x);
int ilogbl(long double x);
Link with -lm.
Feature Test Macro Requirements for glibc (see feature_test_macros(7)):
ilogb(): _BSD_SOURCE || _SVID_SOURCE || _XOPEN_SOURCE >= 500 ||
_ISOC99_SOURCE; or cc -std=c99
ilogbf(), ilogbl(): _BSD_SOURCE || _SVID_SOURCE || _XOPEN_SOURCE >= 600
|| _ISOC99_SOURCE; or cc -std=c99
DESCRIPTION
These functions return the exponent part of their argument as a signed
integer. When no error occurs, these functions are equivalent to the
corresponding logb(3) functions, cast to int.
RETURN VALUE
On success, these functions return the exponent of x, as a signed inte-
ger.
If x is zero, then a domain error occurs, and the functions return
FP_ILOGB0.
If x is a NaN, then a domain error occurs, and the functions return
FP_ILOGBNAN.
If x is negative infinity or positive infinity, then a domain error
occurs, and the functions return INT_MAX.
ERRORS
See math_error(7) for information on how to determine whether an error
has occurred when calling these functions.
The following errors can occur:
Domain error: x is 0 or a NaN
An invalid floating-point exception (FE_INVALID) is raised.
These functions do not set errno for this case.
Domain error: x is an infinity
These functions do not set errno or raise an exception for this
case.
CONFORMING TO
C99, POSIX.1-2001.
SEE ALSO
log(3), logb(3), significand(3)
COLOPHON
This page is part of release 3.22 of the Linux man-pages project. A
description of the project, and information about reporting bugs, can
be found at http://www.kernel.org/doc/man-pages/.
2009-02-04 ILOGB(3)