Math.frexp
From OpenEUO
					Revision as of 21:14, 7 October 2010 by 76.184.213.234 (Talk) (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).")
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).
