LeoParticipant
Veteran
Hi all,
How to write the exponential in probuilder?
I would like something like X^Y ?
Thanks in advance
To calculate Math Pow, you can follow these instructions: (copy/paste from an old topic).
I have found a mathematical equivalent if the Prorealtime LOG function (called Napierian log in the manual) is actually the common LN function:
y = x^p = e^(p*LN(x))
This could then be coded as: y = EXP(p*LOG(x)) This works fine.
LeoParticipant
Veteran
Mathematics of old school, thanks for the answer!