Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
b = 1;
c = 2;
a_correct = sqrt(3);
tolerance = 1e-12;
assert(abs(calculate_short_side(b,c)-a_correct)<tolerance);
|
2 | Pass |
%%
b = 4;
c = 5;
a_correct = 3;
tolerance = 1e-12;
assert(abs(calculate_short_side(b,c)-a_correct)<tolerance);
|
3 | Pass |
%%
b = 12;
c = 13;
a_correct = 5;
tolerance = 1e-12;
assert(abs(calculate_short_side(b,c)-a_correct)<tolerance);
|
4 | Pass |
%%
b = 8;
c = 10;
a_correct = 6;
tolerance = 1e-12;
assert(abs(calculate_short_side(b,c)-a_correct)<tolerance);
|
Make the vector [1 2 3 4 5 6 7 8 9 10]
35554 Solvers
MATCH THE STRINGS (2 CHAR) very easy
250 Solvers
573 Solvers
4999 Solvers
Find the sides of an isosceles triangle when given its area and height from its base to apex
449 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!