Query: isnan
OS: redhat
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
ISINF(3) Linux Programmer's Manual ISINF(3)NAMEisinf, isnan, finite - test for infinity or not-a-number (NaN)SYNOPSIS#include <math.h> int isinf(double value); int isnan(double value); int finite(double value);DESCRIPTIONThe isinf() function returns -1 if value represents negative infinity, 1 if value represents positive infinity, and 0 otherwise. The isnan() function returns a non-zero value if value is "not-a-number" (NaN), and 0 otherwise. The finite() function returns a non-zero value if value is neither infinite nor a "not-a-number" (NaN) value, and 0 otherwise.CONFORMING TOBSD 4.3GNU1993-06-02 ISINF(3)
Related Man Pages |
---|
finite(3) - linux |
isinff(3) - linux |
isnanl(3) - linux |
finite(3) - debian |
finitel(3) - debian |
Similar Topics in the Unix Linux Community |
---|
Apache config issue |
strange ksh arithmetic |
Input arguments with C++ |
Javascript to force decimals in 0.25 steps |
The Terminal on Mac OS X |