Flashnux

GNU/Linux man pages

Livre :
Expressions régulières,
Syntaxe et mise en oeuvre :

ISBN : 978-2-7460-9712-4
EAN : 9782746097124
(Editions ENI)

GNU/Linux

CentOS 4.8

i386

log1p(3)


LOG1P

LOG1P

NAME
SYNOPSIS
DESCRIPTION
CONFORMING TO
SEE ALSO

NAME

log1p − logarithm of 1 plus argument

SYNOPSIS

#include <math.h>

double log1p(double x);

float log1pf(float x);

long double log1pl(long double x);

DESCRIPTION

log1p(x) returns a value equivalent to ’log (1 + x)’. It is computed in a way that is accurate even if the value of x is near zero.

CONFORMING TO

BSD, C99. The float and the long double variants are C99 requirements.

SEE ALSO

exp(3), log(3), expm1(3)



log1p(3)