Exponent calculation formula in expressions?

I need to use exponents in calculating a variable in expressions.
But I don’t know how it works.
I tried as a test “10^-1” but it gives 4294967285 in stead of 0,1

Who can help me ?

Try pow(10,-1)

Ref: Reactor Documentation

2 Likes

@rigpapa: thanks that works!