Exp

From the Oblivion ConstructionSet Wiki
Revision as of 06:26, 2 March 2008 by imported>DragoonWraith (note on Nth root)
Jump to navigation Jump to search

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

set n to exp n

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 )

See Also