[Linux manuál]

exp, expf, expl: exponenciální funkce base-e

Originální popis anglicky: exp, expf, expl - base-e exponential function

Návod, kniha: Linux Programmer's Manual

STRUČNĚ

#include <math.h>
 
double exp(double x);
 
float expf(float x);
 
long double expl(long double x);
 
Link with -lm.

POPIS / INSTRUKCE

The exp() function returns the value of e (the base of natural logarithms) raised to the power of x.

ODPOVÍDAJÍCÍ

SVID 3, POSIX, BSD 4.3, ISO 9899. The float and the long double variants are C99 requirements.

SOUVISEJÍCÍ

cbrt(3), exp10(3), exp2(3), sqrt(3)
2002-07-27