| blosc_shuffle_raw {qs} | R Documentation |
A function for shuffling a raw vector using BLOSC shuffle routines
blosc_shuffle_raw(x, bytesofsize)
x |
The raw vector |
bytesofsize |
Either 4 or 8 |
The shuffled vector
x <- serialize(1L:1000L, NULL) xshuf <- blosc_shuffle_raw(x, 4) xunshuf <- blosc_unshuffle_raw(xshuf, 4)