fpow ( x y -- double )
C standard library math functions

Prev:flog10 ( x -- double )
Next:fsqrt ( x -- double )


Vocabulary
math.libm

Inputs
xa real
ya real


Outputs
doublea real


Word description
Calls the power function (z=x^y) from the C standard library. User code should call ^ instead.

Definition