标准化Z=(X-108)/3后,Z服从N(0,1)分布,然后求0.95的分位点z(0.95),也就是要去计算inverse CDF或者叫quantile。最后还原:a = z(0.95) * 3 + 108。具体代码可参考下面两个链接: inverse cumulative distribution function in c C++ boost library for statistical distributions and functions
标准化
Z=(X-108)/3
后,Z
服从N(0,1)
分布,然后求0.95的分位点z(0.95)
,也就是要去计算inverse CDF或者叫quantile。最后还原:a = z(0.95) * 3 + 108
。具体代码可参考下面两个链接:inverse cumulative distribution function in c
C++ boost library for statistical distributions and functions