#normal-distribution #student #pdf #cdf #function #zero #percent-point-quantile

无std distrs

正态分布和Student’s t分布的PDF、CDF以及百分点/分位数函数

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 文本处理

Download history 61/week @ 2024-04-27 49/week @ 2024-05-04 122/week @ 2024-05-11 149/week @ 2024-05-18 116/week @ 2024-05-25 449/week @ 2024-06-01 125/week @ 2024-06-08 515/week @ 2024-06-15 999/week @ 2024-06-22 420/week @ 2024-06-29 143/week @ 2024-07-06 503/week @ 2024-07-13 140/week @ 2024-07-20 424/week @ 2024-07-27 197/week @ 2024-08-03 79/week @ 2024-08-10

1,084 每月下载量
12 个Crate中使用 (8 直接)

Unlicense OR MIT

26KB
544

Dist Rust

正态分布和Student’s t分布的PDF、CDF以及百分点/分位数函数

🎉 无依赖

Build Status

安装

将此行添加到您的应用程序的 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