Commands by Category:
Index:
Breaks number into a number of the form #.####... and a power of 10.
#.####...
base10
x (scalar) – number to break down.
M (scalar) – in the range -10 < M < 10.
P – integer power such that:
{ b, e } = base10(4500);
After the code above:
b = 4.5 e = 3
and
b*10^e = 4.5*10^3 = 4500
base10.src
previous
bar
next
begwind