ISINF(3) Linux Programmer’s Manual ISINF(3)
NAME
isinf, 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);
DESCRIPTION
The 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.
NOTE
C99 provides additional macros, such as the type-independent fpclassify(), isinf()
and isnan().
CONFORMING TO
BSD 4.3
SEE ALSO
fpclassify(3)
2002-07-27 ISINF(3)
Generated by $Id: phpMan.php,v 4.55 2007/09/05 04:42:51 chedong Exp $ Author: Che Dong
On Apache/1.3.41 (Unix) PHP/5.2.5 mod_perl/1.30 mod_gzip/1.3.26.1a
Under GNU General Public License
2009-01-09 06:43 @38.103.63.58 CrawledBy CCBot/1.0 (+http://www.commoncrawl.org/bot.html)