This function returns the exponentiation of two numbers.


Both input numbers cannot be both equal to 0 simultaneously.


 pow(firstNumber,secondNumber) #Output: Number



Parser expressionDescription


pow(5,2)


This example returns:

25.0



Parameters used in this function

ParameterInput (data type)Description
firstNumber

Any given number or numeric field code.
secondNumber

Any given number or numeric field code.



This function returns a



Use cases and examples



Parser function cloud
Map(error)
Notes

The only possible way of replicating this behaviour would be just to manually make the calculation, so if it's pow(5,2) you can do: 5*5.

But I don't think this is a workaround, because it should be changed every time the second parameter changes ,so it's not that automatic.






Status
Tech review

Style guide




Short descriptionReturns the exponentiation of two numbers.
Output

Label