Handbook
Glossary
fpow ( x y -- double )
C standard library math functions
Prev:
flog10 ( x -- double )
Next:
fsqrt ( x -- double )
Vocabulary
math
.
libm
Inputs
x
a
real
y
a
real
Outputs
double
a
real
Word description
Calls the power function (
z=x^y
) from the C standard library. User code should call
^
instead.
Definition
USING:
alien.c-types
alien.syntax
;
IN:
math.libm
LIBRARY:
libm
FUNCTION-ALIAS:
fpow
double pow
(
double
x,
double
y )