7个版本
0.2.2 | 2024年7月1日 |
---|---|
0.2.1 | 2023年1月1日 |
0.2.0 | 2022年8月29日 |
0.1.3 | 2022年7月31日 |
0.1.0 | 2022年1月3日 |
#264 in 文本处理
1,084 每月下载量
在 12 个Crate中使用 (8 直接)
26KB
544 行
Dist Rust
正态分布和Student’s t分布的PDF、CDF以及百分点/分位数函数
🎉 无依赖
安装
将此行添加到您的应用程序的 Cargo.toml
下的 [dependencies]
distrs = "0.2"
入门指南
正态分布
use distrs::Normal;
Normal::pdf(x, mean, std_dev);
Normal::cdf(x, mean, std_dev);
Normal::ppf(p, mean, std_dev);
Student’s t分布
use distrs::StudentsT;
StudentsT::pdf(x, df);
StudentsT::cdf(x, df);
StudentsT::ppf(p, df);
功能
no_std
- 启用no_std
支持 (需要 libm)
参考文献
历史
查看 变更日志
贡献
鼓励每个人帮助改进这个项目。以下是一些可以帮助的方式
开始开发
git clone https://github.com/ankane/dist-rust.git
cd dist-rust
cargo test
依赖项
~105KB