InverseCdf typedef

InverseCdf = num Function(num p, num start, num end)

Inverse cummulative distribution function of a probability distribution function with non-zero support over the interval: [start, end). The function must return a numerical value in the interval: [start, end).

  • p: A probability 0 <= p < 1,
  • start: the lower limit,
  • end: the upper limit.

Implementation

typedef InverseCdf = num Function(num p, num start, num end);