Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
R=4; B=8;
N=6; K=2;
p = 0.4545;
assert( abs(probability(R,B,N,K)-p)<1e-04 );
|
2 | Pass |
R=22; B=6;
N=14; K=12;
p = 0.2418;
assert( abs(probability(R,B,N,K)-p)<1e-04 );
|
3 | Pass |
R=22; B=60;
N=5; K=0;
p = 0.2002;
assert( abs(probability(R,B,N,K)-p)<1e-04 );
|
4 | Pass |
R=9; B=0;
N=4; K=4;
assert( isequal(probability(R,B,N,K),1) );
|
5 | Pass |
R=1; B=78;
N=78; K=1;
p = 0.9873;
assert( abs(probability(R,B,N,K)-p)<1e-04 );
|
2183 Solvers
Similar Triangles - find the height of the tree
203 Solvers
620 Solvers
Change the sign of even index entries of the reversed vector
296 Solvers
509 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!