用给定的熵创建 n 长度的向量
我正在寻找创建具有特定熵的长度二进制序列。例如,一个由 100 组成的序列,其值为 0 或 1,熵为 0.01。这可能吗?可以用 R 或 Python 完成。这是我用来计算熵的函数。
norm_ent <- function(s){
s1 <- which(s %in% 1)
iet <- c(s1[1], diff(s1), length(s)+1-tail(s1,1))
iet <- iet/(length(s)+1)
h <- 1+((sum(log(iet)*iet))/log(sum(s)+1))
return(h)
}
I'm looking to create a n length binary sequence with specific entropy. For example, a sequence of 100 with values 0 or 1 with entropy 0.01. Is this possible? Can be done in either R or Python. Here's the function I'm using to calculate entropy.
norm_ent <- function(s){
s1 <- which(s %in% 1)
iet <- c(s1[1], diff(s1), length(s)+1-tail(s1,1))
iet <- iet/(length(s)+1)
h <- 1+((sum(log(iet)*iet))/log(sum(s)+1))
return(h)
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论