bin | R Documentation |
Utilities to convert things to binary
tobin(n, len, check=TRUE) todec(bin) comptobin(comp, check=TRUE) bintocomp(bin, use.C=TRUE, check=TRUE)
n |
Integer, to be converted to binary by function |
len |
Length of the binary vector returned by function
|
bin |
Binary: a vector of |
comp |
A composition |
check |
Boolean, with default |
use.C |
Boolean, with default |
These functions are not really intended for the end user; they are
used in nextcomposition()
.
Function tobin()
converts integer n
to a binary
string of length len
Function todec()
converts a binary string to decimal,
so todec(tobin(n,i))==n
, provided i
is big enough
Function comptobin()
converts a composition to binary
Function bintocomp()
converts a binary string to a
composition
Robin K. S. Hankin
Wikipedia contributors, 2020. “Composition (combinatorics) — Wikipedia, The Free Encyclopedia”, https://en.wikipedia.org/w/index.php?title=Composition_(combinatorics)&oldid=944285378
tobin(10,5) todec(tobin(10,5)) comptobin(c(1,1,4)) bintocomp(c(1,1,0,0,1,1,1,1))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.