a
(float): The base number to be raised to a power. Default value is 0.b
(float): The exponent or power to which the base number should be raised. Default value is 0.result
(float): The result of raising the base number a
to the power of b
.a
input.b
input.result
output will contain the calculated value of a
raised to the power of b
.a
input of the POW node.b
input of the POW node.result
output of the POW node will contain the area of the square, which is 25 (5^2).result
output in further calculations or connect it to other nodes as needed.
result
output is always 0, check that the a
and b
inputs are properly connected and are not both 0.result
output is unexpectedly large or small, verify that the input values are within a reasonable range and that you are not unintentionally performing an extreme calculation.