Just follow the Pythagoras theorem.
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);
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In hypotenuse (line 2)
In ScoringEngineTestPoint1 (line 5)
In solutionTest (line 3)]
|
2 | Pass |
a = 3;
b = 4;
c_correct = 5;
tolerance = 1e-12 ;
assert(abs(hypotenuse(a,b)-c_correct)<tolerance);
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In hypotenuse (line 2)
In ScoringEngineTestPoint2 (line 5)
In solutionTest (line 5)]
|
3 | Pass |
a = 5;
b = 12;
c_correct = 13;
tolerance = 1e-12 ;
assert(abs(hypotenuse(a,b)-c_correct)<tolerance);
[Warning: Function assert has the same name as a MATLAB builtin. We suggest you rename the function to avoid a potential name conflict.]
[> In unix (line 32)
In hypotenuse (line 2)
In ScoringEngineTestPoint3 (line 5)
In solutionTest (line 7)]
|
1398 Solvers
Find the peak 3n+1 sequence value
1107 Solvers
3968 Solvers
Basic electricity in a dry situation
488 Solvers
903 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!