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).")
(No difference)

Revision as of 21:14, 7 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).