numToRaw {pack} | R Documentation |
Numeric to Raw vector
Description
Convert numeric values to a raw vector.
Usage
numToRaw(x, nBytes = 1)
Arguments
x |
A number to be converted (must be > 0) |
nBytes |
The number of bytes to use |
Value
A raw vector containing the bytes representing x
.
Author(s)
Joshua M. Ulrich
See Also
Examples
# Will be left null padded
(x <- numToRaw(421,4))
rawToNum(x,2)
rawToNum(x,4)
[Package pack version 0.1-2 Index]