Search found 1 match

by jacknpoe
Sun Jun 29, 2025 2:56 pm
Forum: Support
Topic: POW with float point
Replies: 1
Views: 6

POW with float point

I wanna do this kind of math:

Code: Select all

e = 1.03 ^ 0.5
^ and POW use only integer. When I use EXP and LOG, I have the "Internal method not implemented" error:

Code: Select all

e = EXP( LOG (1.03) * 0.5)
I don't think it's my fault. What to do?