cumulativeProbability abstract method

double cumulativeProbability(
  1. T x
)

The Cumulative Distribution Function (CDF).

Returns the cumulative probability at x, or the probability of a random variable to be less than or equal to x.

Implementation

double cumulativeProbability(T x);