| 3.5.1.3.44 IncBetaIncBeta-func DescriptionThis function is used to calculate the incomplete Beta function with parameters x, a, and b, which is denoted by:
/math-8f76e5248715f1cb224565f1214e6f21.png?v=0)  where  B(a,b) is the Beta function.
 Syntaxdouble incbeta(double x, double a, double b) Parametersx
 Input parameter. The value of the x variate, must lie on the interval [0, 1].
 a
 Input parameter. The first shape parameter, a, of the required beta distribution, must be positive( a>0 ).
 b
 Input parameter. The second shape parameter, b, of the required beta distribution, must be positive ( b>0 ).
 ReturnReturns the value of Beta function with parameters x, a and b.
 Exampleaa = incbeta(1,2,2);
aa = ; //should return 1 See Alsobeta(a, b), betacdf(x, a, b)
 |