Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
n=2;
r=0.25;
y_correct = 1.3719;
assert(abs(bi_coff(n,r)-y_correct)<0.0001)
|
2 | Fail |
n=2;
r=2;
y_correct = 1;
assert(abs(bi_coff(n,r)-y_correct)<0.0001)
|
3 | Fail |
n=5;
r=3.5;
y_correct = 7.7607;
assert(abs(bi_coff(n,r)-y_correct)<0.0001)
|
4 | Fail |
n=5;
r=1.1;
y_correct = 5.5483;
assert(abs(bi_coff(n,r)-y_correct)<0.0001)
|
Return a list sorted by number of occurrences
1504 Solvers
6364 Solvers
Make a random, non-repeating vector.
2795 Solvers
Find Factrorial without using built-in function
109 Solvers
construct matrix with identical rows
168 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!