POWER

THE BOX'S MAIN HELP:
Result of this function is A raised to the power of B;
Example: pow(2,3.0) = 2*2*2 = 8;
Example: pow(4,0.5) = sqrt(4) = 2;

A (input):
This value must be a float.

B (input):
Input A is raised to the power of this value.
This value must be a float.

OUT (output):
Result is A raised to the power of B;
Example: pow(2,3.0) = 2*2*2 = 8;
Example: pow(4,0.5) = sqrt(4) = 2;

<-- BACK TO Math

© Copyright 1996,1998 Cinema Graphics Inc. All Rights reserved.