inv-chisquare-cdf
Version:
Inverse chi-squared cumulative distribution function
12 lines (10 loc) • 445 B
JavaScript
const invChiSquareCDF = require('./invChiSquareCDF.js');
const invRegLowGamma = require('./invRegLowGamma.js');
const logGamma = require('./logGamma.js');
const regLowGamma = require('./regLowGamma.js');
module.exports = {
invChiSquareCDF: (probability, degreeOfFreedom)=>invChiSquareCDF(probability, degreeOfFreedom),
invRegLowGamma: (p, a)=>invRegLowGamma(p, a),
logGamma: (x)=>logGamma(x),
regLowGamma: (a, x)=>regLowGamma(a, x),
};