Learn R Programming

binaryLogic (version 0.3.9)

bytesNeeded: Minimum number of "byte" needed to hold n "bit"

Description

A simple helper function that returns the minimum number of byte needed to hold the amount of n bit.

Usage

bytesNeeded(n)

Arguments

n

The number of bit.

Value

The number of minimum byte needed to hold n bit.

See Also

fillUpToByte or binaryPrefix or byte

Examples

Run this code
# NOT RUN {
ten <- as.binary(10)
bytesNeeded(length(ten))
# }

Run the code above in your browser using DataLab