Home | History | Annotate | Download | only in distributions

Lines Matching refs:where

40 # Lower bound values were chosen by examining where the support of ndtr
97 y = array_ops.where(math_ops.less(z, half_sqrt_2),
99 array_ops.where(math_ops.greater(w, 0.),
197 maybe_complement_p = array_ops.where(p > 1. - np.exp(-2.), 1. - p, p)
202 sanitized_mcp = array_ops.where(
215 # where z = sqrt(-2. * log(p)), and P/Q are chosen between two different
226 x = array_ops.where(sanitized_mcp > np.exp(-2.),
228 array_ops.where(z >= 8.0, x_for_small_p, x_otherwise))
230 x = array_ops.where(p > 1. - np.exp(-2.), x, -x)
233 x_nan_replaced = array_ops.where(
234 p <= 0.0, -infinity, array_ops.where(p >= 1.0, infinity, x))
270 where `(2n-1)!! = (2n-1) (2n-3) (2n-5) ... (3) (1)` is a
320 return array_ops.where(
323 array_ops.where(math_ops.greater(x, lower_segment),
385 This function calculates `Log[L(x)]`, where `L(x)` is the cumulative
427 return array_ops.where(x < 0., lower_solution, upper_solution)