Nodes > Math > Exponential > Pow

Raises a value to an exponential power. Equivalent to AExponent. Note that the result is undefined when A < 0, or when A == 0 and Exponent <= 0.
Inputs
| Name | Type | Description |
|---|---|---|
| A | float | Value to raise to the power of Exponent |
| Exponent | float | Power to raise A by |
Outputs
| Name | Type | Description |
|---|---|---|
| pow( A, Exponent ) | float | A ^ Exponent |
Was this page helpful?