Log
From The Elder Scrolls Construction Set Wiki
A command for Oblivion Script Extender
Syntax:
log [float]
Returns the natural logarithm of a number.
[edit] Example
set n to log n
[edit] Nth Root
OBSE does not provide an Nth Root function, however, the following code can get the Nth Root, using Exp and Log.
set NthRootOfX to ( log x )/N set NthRootOfX to ( exp NthRootOfX )

