Misc$to.base {IdMappingAnalysis} | R Documentation |
Convert number to a numeric vector of a given base.
## Static method (use this): ## Misc$to.base(n, base=2, r=TRUE, ...) ## Don't use the below: ## S3 method for class 'Misc' to.base(static, n, base=2, r=TRUE, ...)
n |
Number to convert. |
base |
Base to use for a conversion. Default is 2. |
r |
Order of the output nnumbers If r=TRUE then big-endian
otherwise small-endian. Default is |
... |
Not used |
numeric
vector of a given base.
Alex Lisovich, Roger Day
For more information see Misc
.
b<-Misc$to.base(25);