def probit(p):
    return -sqrt(2.) * erfcinv(2. * p)
Example #2
0
def inv_phi(y):
    return -tt.sqrt(2) * tt.erfcinv(2 * y)
Example #3
0
def probit(p):
    return -sqrt(2) * erfcinv(2 * p)
Example #4
0
File: math.py Project: nj-eka/pymc3
def probit(p):
    return -sqrt(2.0) * erfcinv(2.0 * p)
Example #5
0
def probit(p):
    return -sqrt(2.) * erfcinv(2. * p)
Example #6
0
File: math.py Project: taku-y/pymc3
def probit(p):
    return -sqrt(2) * erfcinv(2 * p)