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)
y =
1.3719
|
2 | Fail |
n=2;
r=2;
y_correct = 1;
assert(abs(bi_coff(n,r)-y_correct)<0.0001)
y =
1
|
3 | Fail |
n=5;
r=3.5;
y_correct = 7.7607;
assert(abs(bi_coff(n,r)-y_correct)<0.0001)
y =
7.7607
|
4 | Fail |
n=5;
r=1.1;
y_correct = 5.5483;
assert(abs(bi_coff(n,r)-y_correct)<0.0001)
y =
5.5483
|
Rotate input square matrix 90 degrees CCW without rot90
380 Solvers
Change the first and last diagonal element of the identity matrix to zero
117 Solvers
Union of two set decreasing order
99 Solvers
Matlab Basics - Absolute Value
360 Solvers
Compute LOG(1+X) in natural log
204 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!