Pow - Math

From the CreationKit Wiki
Jump to navigation Jump to search

Member of: Math Script

Raises x to the y power, usually written as xy.

Syntax[edit | edit source]

float Function pow(float x, float y) native global

Parameters[edit | edit source]

  • x: The value to raise.
  • y: The power to raise the value to.

Return Value[edit | edit source]

The result of xy.

Examples[edit | edit source]

float x = pow(2.0, 2.0) ; x == 4
float y = pow(2.0, 8.0) ; y == 256

See Also[edit | edit source]