Difference between revisions of "Math.frexp"

From OpenEUO
Jump to: navigation, search
(Created page with " local m , n = math.frexp (x) Returns m and n such that x = m2^n, n is an integer and the absolute value of m is in the range [0.5, 1) (or zero when x is zero).")
 
 
Line 2: Line 2:
  
 
Returns m and n such that x = m2^n, n is an integer and the absolute value of m is in the range [0.5, 1) (or zero when x is zero).
 
Returns m and n such that x = m2^n, n is an integer and the absolute value of m is in the range [0.5, 1) (or zero when x is zero).
 +
 +
[[Math.exp]]
 +
 +
[[Math.fmod]]
 +
 +
[[Math.huge]]
 +
 +
[[Math.ldexp]]
 +
 +
[[Math.log]]
 +
 +
[[Math.log10]]
 +
 +
[[Math.modf]]
 +
 +
[[Math.pi]]
 +
 +
[[Math.pow]]
 +
 +
[[Math.sqrt]]
 +
 +
[[String.format]]
 +
 +
[[Tonumber]]
 +
 +
[[Tostring]]

Latest revision as of 15:27, 9 October 2010

local m , n = math.frexp (x)

Returns m and n such that x = m2^n, n is an integer and the absolute value of m is in the range [0.5, 1) (or zero when x is zero).

Math.exp

Math.fmod

Math.huge

Math.ldexp

Math.log

Math.log10

Math.modf

Math.pi

Math.pow

Math.sqrt

String.format

Tonumber

Tostring