Function raises the value at the input a to a power. The exponent is given by the value in the b input. The result of the operation is passed to the output y.
Example in Python
y = a**b
| Function menu | Block diagram |
|---|---|
![]() |
![]() |
| Name | Type | Description |
|---|---|---|
a |
float, int32 | Base |
b |
float, int32 | Exponent |
| Name | Type | Description |
|---|---|---|
y |
see note | Power |
Type of the value at the output
ycorresponds to the type of the value at the inputa.
Not available