Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
可能重复: erf(x) 和 math.h 最好的 C++ 统计库?
我想知道是否有任何标准方法可以在 C++ 中实现累积正态分布函数。或者,是否有任何现有的库可以完成该任务?
任何人都可以推荐一个好的 C++ 统计库,如果有的话?
谢谢。
您可以使用 erf 函数(包含在标准数学库source中)来执行此操作。
CDF = 0.5 + 0.5 * erf(x/(sigma * sqrt(2.0)));
sigma = 1.0 当然是正态分布。
Boost与标准一样好。更多提升数学/统计。
累积正态分布的独立 C++ 实现的简单示例可在此处获得