I tried
function PowerOf(Base, Exponent: single): single;
begin
Result := Exp(Exponent * Ln(Base));
end;
But neither Exp (whatever that is) nor Ln (Natural Logarithm) functions are know. (Found this off of Google)
Can somebody help me get / find a working exponents function that works with more than just integer exponents?