Beispiel #1
0
def normal_lower_bound(prob, mu=0, sigma=1):
    return inverse_normal_cdf(1 - prob, mu, sigma)
Beispiel #2
0
def normal_upper_bound(prob, mu=0, sigma=1):
    return inverse_normal_cdf(prob, mu, sigma)