Namespaces
Variants
Views
Actions

fpclassify

From cppreference.com
< c | numeric | math
Revision as of 07:08, 20 April 2012 by P12 (Talk | contribs)

Template:c/numeric/math/sidebar

Defined in header <math.h>
#define fpclassify(arg) /* implementation defined */
(since C99)

Categorizes floating point value arg into the following categories: zero, subnormal, normal, infinite, NAN, or implementation-defined category. The macro returns an integral value.

Parameters

arg - floating point value

Return value

One of FP_INFINITE, FP_NAN, FP_NORMAL, FP_SUBNORMAL, FP_ZERO or implementation-defined type, specifying the category of arg.

See also

checks if the given number has finite value
(function) [edit]
(C99)
checks if the given number is infinite
(function) [edit]
(C99)
checks if the given number is NaN
(function) [edit]
checks if the given number is normal
(function) [edit]
C++ documentation for fpclassify