Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/EdwardRaff/JSAT
/ cdf
Method
cdf
JSAT/src/jsat/distributions/Beta.java:38–46 ·
view source on GitHub ↗
(double x)
Source
from the content-addressed store, hash-verified
36
}
37
38
@Override
39
public
double cdf(double x)
40
{
41
if
(x <= 0)
42
return
0;
43
else
if
(x >= 1)
44
return
1;
45
return
betaIncReg(x, alpha, beta);
46
}
47
48
@Override
49
public
double invCdf(double p)
Callers
6
testCdf
Method · 0.45
testCdf
Method · 0.45
pValue
Method · 0.45
pValue
Method · 0.45
dCalc
Method · 0.45
pValue
Method · 0.45
Calls
1
betaIncReg
Method · 0.80
Tested by
6
testCdf
Method · 0.36
testCdf
Method · 0.36
pValue
Method · 0.36
pValue
Method · 0.36
dCalc
Method · 0.36
pValue
Method · 0.36