ppf method

double ppf(
  1. double q
)
override

Percent point function (inverse of cdf) at q of the given RV

Implementation

double ppf(double q) => math.normalInv(q);