fillUpToByte: Fill up to Byte (00000000..)

Description Usage Arguments Details Value See Also Examples

Description

Fills up the binary number with zeros(0) or ones(1), to the size in Byte.

Usage

1
fillUpToByte(x, size=0, value=FALSE)

Arguments

x

The binary number to fill up with zeros. (Any binary vector).

size

in Byte. 0 = auto (smallest possible Byte).

value

to fill up with FALSE(0) or fill up with TRUE(1).

Details

No floating point supported.

Value

binary number. A binary vector with the desired size.

See Also

fillUpToBit or bytesNeeded, negate, switchEndianess.

Examples

1
2
fillUpToByte(as.binary(c(1,1), logic=TRUE), size=2)
fillUpToByte(as.binary(c(1,0,1), logic=TRUE), size=2, value=FALSE)

Example output

 [1] 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1
 [1] 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 1

binaryLogic documentation built on May 2, 2019, 10:25 a.m.