cdf

abstract fun cdf(x: Double): Double(source)

Computes the cumulative distribution function (CDF) at the given point.

The CDF returns the probability that a random variable drawn from this distribution takes a value less than or equal to x.

Return

the probability that a value is less than or equal to x, in the range [0, 1].

Parameters

x

the point at which to evaluate the cumulative probability.