(defn regularized-beta
"
Returns the regularized incomplete beta value. Equivalent to R's pbeta function.
References:
http://incanter.org/docs/parallelcolt/api/cern/jet/stat/tdouble/Gamma.html
http://en.wikipedia.org/wiki/Regularized_incomplete_beta_function
http://mathworld.wolfram.com/RegularizedBetaFunction.html
"
([x a b]
(Gamma/incompleteBeta a b x)))
Comments top
No comments for regularized-beta. Log in to add a comment.