boost 中的分位数函数 (C++)
从文档来看,boost 似乎为正态分布和伽马分布提供了分位数函数(逆 cdf 函数),但我不清楚如何实际使用它们。有人可以粘贴一个例子吗?
Judging from the documentation boost seems to offer quantile functions (inverse cdf functions) for both normal and gamma distributions, but its not clear for me how can I actually use them. Could someone paste an example please?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
QuantCorner。
There is a workable example on QuantCorner.
分位数计算作为自由函数实现。这是一个示例:
您还可以使用以下方法获取补数(右侧的分位数):
这里有一些类似的工作示例:
http://www.boost.org/doc/libs/1_46_1/libs/math/doc/sf_and_dist/html/math_toolkit/dist/stat_tut/weg.html
编辑:由于 ADL,免费函数不需要命名空间
The quantile calculation is implemented as a free function. Here's an example:
You can also get the complement (quantile from the right) using:
There are some similar worked examples here:
http://www.boost.org/doc/libs/1_46_1/libs/math/doc/sf_and_dist/html/math_toolkit/dist/stat_tut/weg.html
Edit: don't need namespaces on the free functions thanks to ADL