Actions: Math
Random Number
Returns a random integer.
Argument | Description |
---|---|
Output | The location where the result will go (variable or text or field element). |
lowerNumber | An integer or variable containing an integer to be the lowest possible random number. |
upperNumber | An integer or variable containing an integer to be the highest possible random number. |
get difference
Calculates the difference between two numbers.
Argument | Description |
---|---|
Number1 | A number or variable containing a number to subtract from. |
Number2 | A number or variable containing a number to subtract by. |
Output | The location where the subtraction of two numbers will be stored (variable). |
ErrorHandling | The action to take if an error occurs. |
get division
Calculates the division of two numbers.
Argument | Description |
---|---|
Dividend | A number or variable containing a number to be the dividend (number that is being divided; ‘Dividend’/‘Divisor’). |
Divisor | A number or variable containing a number to be the divisor (number that is being divided by). |
Output | The location where the division of the two numbers will be stored (variable). |
ErrorHandling | [Optional] The action to take if an error occurs. Shows error in a popup error as a default action. |
get power
Calculates the number raised to a power.
Argument | Description |
---|---|
Base | A number or variable containing a number to take the exponent of. |
Exponent | A number or variable containing a number representing what number to raise the base number by. |
Output | The location where the number raised by the power will be stored (variable). |
ErrorHandling | The action to take if an error occurs. |
get product
Calculates the product of two numbers.
Argument | Description |
---|---|
Multiplier | A number or variable containing a number to be multiplied. |
Multiplicand | A number or variable containing a number to be multiplied. |
Output | The location where the product of the two numbers will be stored (variable). |
ErrorHandling | The action to take if an error occurs. |
get root
Calculates the ‘nth’ root of a number.
Argument | Description |
---|---|
Radicand | A number or variable containing a number to take the root of. |
Degree | A number or variable containing a number to take the root by. |
Output | The location where the nth root of a number will be stored (variable). |
ErrorHandling | The action to take if an error occurs. |
get sum
Calculates the sum of two numbers.
Argument | Description |
---|---|
Number1 | A number or variable containing a number to be summed. |
Number2 | A number or variable containing a number to be summed. |
Output | The location where the sum of the two numbers will be stored (variable). |
ErrorHandling | The action to take if an error occurs. |
This chapter was last updated on Tue 7 Nov 2023 16:33:22 GMT