INFNAN

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


 

NOMBRE

infnan - maneja un resultado infinito o no-numérico (not-a-number, NaN)  

SINOPSIS

#include <math.h>

double infnan(int error);
 

DESCRIPCIÓN

La función infnan() devuelve un valor manejable para un valor infinito o no-numérico (NaN). El valor de error puede ser ERANGE para representar infinito, o cualquier otro valor para NaN. errno también se actualiza.  

VALOR REGRESADO

Si error es ERANGE (infinito), se devuelve HUGE_VAL.

Si error es -ERANGE (-infinito), se devuelve -HUGE_VAL.

Si error es cualquier otra cosas, se devuelve NAN.  

ERRORES

ERANGE
El valor de error es infinito positivo o negativo.
EDOM
El valor de error es no-numérico (NaN).
 

CONFORME A

BSD 4.3


 

Index

NOMBRE
SINOPSIS
DESCRIPCIÓN
VALOR REGRESADO
ERRORES
CONFORME A

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