cdf method

double cdf(
  1. double x
)
override

Implementation

double cdf(double x) {
  return math.ibetaReg(alpha, beta, x);
}