Handbook
Glossary
fexp ( x -- double )
C standard library math functions
Prev:
fsinh ( x -- double )
Next:
flog ( x -- double )
Vocabulary
math
.
libm
Inputs
x
a
real
Outputs
double
a
real
Word description
Calls the exponential function (
y=e^x
) from the C standard library. User code should call
e^
instead.
Definition
USING:
alien.c-types
alien.syntax
;
IN:
math.libm
LIBRARY:
libm
FUNCTION-ALIAS:
fexp
double exp (
double
x )