[Linux manuál]

infnan: vypořádat se s nekonečným nebo nečíselným výsledkem (NaN)

Originální popis anglicky: infnan - deal with infinite or not-a-number (NaN) result

Návod, kniha: Linux Programmer's Manual

STRUČNĚ

#include <math.h>
 
double infnan(int error);
 
Link with -lm.

POPIS / INSTRUKCE

The infnan() function returns a suitable value for infinity and "not-a-number" (NaN) results. The value of error can be ERANGE to represent infinity or anything else to represent NaN. errno is also set.

NÁVRATOVÁ HODNOTA

If error is ERANGE (Infinity), HUGE_VAL is returned.
If error is -ERANGE (-Infinity), -HUGE_VAL is returned.
If error is anything else, NAN is returned.

CHYBY / ERRORY

EDOM
The value of error is "not-a-number" (NaN).
ERANGE
The value of error is positive or negative infinity.

ODPOVÍDAJÍCÍ

BSD 4.3
1993-06-02 GNU