Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
n=10;
e=10;
s=10;
w=10;
t=2;
y_correct=113.1371;
assert(abs(total_distance(n,e,s,w,t)-y_correct)<1e-4)
|
2 | Pass |
n=15;
e=7;
s=3;
w=15;
t=1.5;
y_correct=91.0185;
assert(abs(total_distance(n,e,s,w,t)-y_correct)<1e-4)
|
3 | Pass |
n=11;
e=21;
s=31;
w=41;
t=1.7;
y_correct=263.5003;
assert(abs(total_distance(n,e,s,w,t)-y_correct)<1e-4)
|
Output any real number that is neither positive nor negative
316 Solvers
Element by element multiplication of two vectors
268 Solvers
find the surface area of a cube
336 Solvers
555 Solvers
199 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!