  | SpecialFunctionsIncompleteBeta Method | 
            The incomplete beta function, with x defined over the domain of [0, 1].  
            
Namespace: CenterSpace.NMath.CoreAssembly: NMath (in NMath.dll) Version: 7.4
Syntaxpublic static double IncompleteBeta(
	double a,
	double b,
	double x
)
Public Shared Function IncompleteBeta ( 
	a As Double,
	b As Double,
	x As Double
) As Double
public:
static double IncompleteBeta(
	double a, 
	double b, 
	double x
)
static member IncompleteBeta : 
        a : float * 
        b : float * 
        x : float -> float Parameters
- a  Double
 - The first parameter, must be greater than 0.
 - b  Double
 - The second parameter, mus tbe greater than 0.
 - x  Double
 - A real number between 0 and 1 inclusive.
 
Return Value
DoubleThe integral from 0 to x of t^(a-1) (1-t)^(b-1) dt 
Exceptions
See Also