2个版本
0.1.1 | 2021年4月18日 |
---|---|
0.1.0 | 2021年4月17日 |
#1438 in 嵌入式开发
9KB
113 行
近似香农熵
一个Rust库,用于计算切片的近似香农熵。
由于使用了来自micromath的近似自然对数,可以在no_std环境下使用。
用法
将以下内容添加到您的Cargo.toml中
[dependencies]
approx_shannon_entropy = "0.1.1"
示例
$ cargo run --example three_bits
Shannon Entropy (approximate bits per byte): 1
$ cargo build --example stdin_entropy
$ echo A | ./target/debug/examples/stdin_entropy
lib.rs
:
近似香农熵
由于使用了来自micromath的近似自然对数,可以在no_std环境下使用
依赖关系
~220KB