Difference between revisions of "Lua:doubleToByteTable"
Jump to navigation
Jump to search
m (moved doubleToByteTable to Lua:doubleToByteTable) |
|
(No difference)
| |
Revision as of 00:07, 25 January 2018
function doubleToByteTable(Number) : table
Converts a QWORD (8 bytes), interpreted as a double precision floating point, to a byte table.
Function Parameters
| Parameter | Type | Description |
|---|---|---|
| Number | number | The number to convert to a byte table |
Examples
local bt = doubleToByteTable(100.0)
writeBytes('00123ABC', bt)
Code:
local bt = doubleToByteTable(10)
for i, v in ipairs(bt) do
print(i - 1, string.format('%02X', v))
end
Output:
0 00 1 00 2 00 3 00 4 00 5 00 6 24 7 40
Code:
local bt = doubleToByteTable(10.9)
for i, v in ipairs(bt) do
print(i - 1, string.format('%02X', v))
end
Output:
0 CD 1 CC 2 CC 3 CC 4 CC 5 CC 6 25 7 40