Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
a = 1;
b = 2;
c_correct = sqrt(5);
tolerance = 1e-12 ;
assert(abs(hypotenuse(a,b)-c_correct)<tolerance);
c =
2.2361
|
2 | Pass |
a = 3;
b = 4;
c_correct = 5;
tolerance = 1e-12 ;
assert(abs(hypotenuse(a,b)-c_correct)<tolerance);
c =
5
|
3 | Pass |
a = 5;
b = 12;
c_correct = 13;
tolerance = 1e-12 ;
assert(abs(hypotenuse(a,b)-c_correct)<tolerance);
c =
13
|
Make the vector [1 2 3 4 5 6 7 8 9 10]
35563 Solvers
2500 Solvers
Set the array elements whose value is 13 to 0
939 Solvers
282 Solvers
306 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!