http://qs321.pair.com?node_id=652405


in reply to Re^2: Exponential Function Programming
in thread Exponential Function Programming

x to the power of n is done via: $x ** $n or
sub x_power_n { my $x = shift; my $n = shift; my $result = $x; my $i = 1; while ($i < $n) { $result *= $x; $i++; } return $result; }
You need to do this, though, "infinite" times, reason why I provided a parameter to "stop" after a certain time.

Replies are listed 'Best First'.
Re^4: Exponential Function Programming
by ikegami (Patriarch) on Nov 22, 2007 at 19:38 UTC

    That only works for integer exponents. The equation in the OP handles real numbers.

    Using exp and ln, it's possible to find any exponent.

A reply falls below the community's threshold of quality. You may see it by logging in.