ISINF

Section: Manual del Programador de Linux (3)
Updated: 2 Marzo 1998
Index Return to Main Contents


 

NOMBRE

isinf, isnan, finite - pruebas para la infinitud o no-es-un-número (NaN)  

SINOPSIS

#include <math.h>

int isinf(double valor);

int isnan(double valor);

int finite(double valor);
 

DESCRIPCIÓN

La función isinf() devuelve -1 si valor representa infinito negativo, 1 si valor representa infinito positivo, y 0 en otro caso.

La función isnan() devuelve un valor distinto de cero si valor es "no-un-número" (NaN), y 0 en otro caso.

La función finite() devuelve un valor distinto de cero si valor no es ni infinito ni "no-un-número" (NaN), y 0 en otro caso.  

CONFORME A

BSD 4.3


 

Index

NOMBRE
SINOPSIS
DESCRIPCIÓN
CONFORME A

This document was created by man2html, using the manual pages.
Time: 06:16:23 GMT, January 22, 2005