Learn R Programming

qs (version 0.27.3)

blosc_unshuffle_raw: Un-shuffle a raw vector

Description

Un-shuffles a raw vector using BLOSC un-shuffle routines.

Usage

blosc_unshuffle_raw(x, bytesofsize)

Value

The unshuffled vector.

Arguments

x

A raw vector.

bytesofsize

Either 4 or 8.

Examples

Run this code
x <- serialize(1L:1000L, NULL)
xshuf <- blosc_shuffle_raw(x, 4)
xunshuf <- blosc_unshuffle_raw(xshuf, 4)

Run the code above in your browser using DataLab