beta function

double beta(
  1. double z,
  2. double w
)

Computes the Euler Beta function.

Implementation

double beta(double z, double w) => exp(betaLn(z, w));