Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
N=3; R=100; V=12;
reading_correct = 6;
reading = ladder(N,R,V);
assert(abs(reading-reading_correct)<1000*eps)
|
2 | Fail |
N=3; R=100; V=120;
reading_correct = 60;
reading = ladder(N,R,V);
assert(abs(reading-reading_correct)<1000*eps)
|
3 | Fail |
N=5; R=100; V=100;
reading_correct = 20;
reading = ladder(N,R,V);
assert(abs(reading-reading_correct)<1000*eps)
|
2401 Solvers
Sum of diagonal of a square matrix
1327 Solvers
559 Solvers
find the roots of a quadratic equation
168 Solvers
338 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!