gamma static method

double gamma(
  1. double x
)

Implementation

static double gamma(double x) {
  return math.exp(logGamma(x));
}