[dismiss]
This wiki is a copy of the original Oblivion CS wiki created and maintained by the UESP.net. See CSwiki:Copy Notice for more info.
Exp
Revision as of 19:17, 15 June 2008 by imported>DragoonWraith (→See Also: Pow)
A command for Oblivion Script Extender
Syntax:
exp [float]
Returns e to the power of the specified number. Is the inverse function to log.
Example[edit | edit source]
set n to exp n
Nth Root[edit | edit source]
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 )