Pow¶
Calculates the result of an exponential function
In C#: Math.Pow(x, y)
Input Parameters¶
| Name (Relevancy & Type) | Description |
|---|---|
| Value (Single) | Base Defines which value is multiplied with itself |
| Exponent (Single) | Power Defines how often the Value / Base is multiplied with itself |
Outputs¶
| Name | Type |
|---|---|
| Result | System.Single |