UNPKG

astl

Version:

AssemblyScript-STL (Standard Template Library, migrated from the C++)

7 lines (6 loc) 144 B
import { tgamma } from "./gamma"; @inline export function beta(x: f64, y: f64): f64 { return tgamma(x) * tgamma(y) / tgamma(x + y); }