tf.contrib.distributions.WishartCholesky.cdf(value, name='cdf')
Cumulative distribution function.
Given random variable X
, the cumulative distribution function cdf
is:
cdf(x) := P[X <= x]
Args:
-
value
:float
ordouble
Tensor
. -
name
: The name to give this op.
Returns:
-
cdf
: aTensor
of shapesample_shape(x) + self.batch_shape
with values of typeself.dtype
.
Please login to continue.