as.binary()
R语言中的函数用于将整数值转换为二进制值。
用法: as.binary(x)
参数:
x:整数值
范例1:
# R Program to convert
# an integer to binary
# Loading library
library(binaryLogic)
# Calling as.binary() function
as.binary(1)
as.binary(10)
as.binary(-1)
as.binary(0xAB)
输出:
[1] 1 [1] 1 0 1 0 [1] 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 [1] 1 0 1 0 1 0 1 1
范例2:
# R Program to convert
# an integer to binary
# Loading library
library(binaryLogic)
# Creating a vector
x1 <- c(1, 10, -1, 2, 5)
# Calling as.binary() function
as.binary(x1)
输出:
[[1]] [1] 1 [[2]] [1] 1 0 1 0 [[3]] [1] 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 1 [[4]] [1] 1 0 [[5]] [1] 1 0 1
相关用法
- R语言 as.integer()用法及代码示例
- R语言 utf8ToInt()用法及代码示例
- R语言 is.integer()用法及代码示例
- R语言 charToRaw()用法及代码示例
- R语言 deg2rad()用法及代码示例
- R语言 rad2deg()用法及代码示例
- R语言 strtoi()用法及代码示例
- R语言 intToUtf8()用法及代码示例
- R语言 intToBits()用法及代码示例
- R语言 type.convert()用法及代码示例
- R语言 col2rgb()用法及代码示例
- R语言 lgamma()用法及代码示例
- R语言 trigamma()用法及代码示例
- R语言 qcauchy()用法及代码示例
- R语言 qlogis()用法及代码示例
- R语言 qlnorm()用法及代码示例
- R语言 qpois()用法及代码示例
- R语言 qnbinom()用法及代码示例
- R语言 ecdf()用法及代码示例
- R语言 pf()用法及代码示例
- R语言 qf()用法及代码示例
- R语言 qweibull()用法及代码示例
- R语言 qtukey()用法及代码示例
- R语言 qsignrank()用法及代码示例
注:本文由纯净天空筛选整理自nidhi_biet大神的英文原创作品 Convert an Integer to a Binary value in R Programming – as.binary() Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。