Actions: Math
Get the 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 the 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 the 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 the 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 the 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 the 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 Wed 8 Feb 2023 14:24:05 GMT