top of page

11 Math Functions

pow(base~ exponent)

Calculates the value of a number raised to a power. Pow() can be used to raise a number to a fractional power. This is useful for generating exponential mapping of values or curves.

pow(base,exponent)


base: the number (float)

exponent: the power to which the base is raised (float)


Returns

The result of the exponentiation (double)


© 2021 Odyssey Navigator. All rights reserved.

bottom of page