pracma (version 1.9.9)

bits: Binary Representation

Description

Literal bit representation.

Usage

bits(x, k = 54, pos_sign = FALSE, break0 = FALSE)

Arguments

x
a positive or negative floating point number.
k
number of binary digits after the decimal point
pos_sign
logical; shall the '+' sign be included.
break0
logical; shall trailing zeros be included.

Value

Returns a string containing the binary representation.

Details

The literal bit/binary representation of a floating point number is computed by subtracting powers of 2.

See Also

nextpow2

Examples

Run this code
bits(2^10)        # "10000000000"
bits(1 + 2^-10)   #  "1.000000000100000000000000000000000000000000000000000000"
bits(pi)          # "11.001001000011111101101010100010001000010110100011000000"
bits(1/3.0)       #  "0.010101010101010101010101010101010101010101010101010101"
bits(1 + eps())   #  "1.000000000000000000000000000000000000000000000000000100"

Run the code above in your browser using DataCamp Workspace