Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x = 5;
y = 8;
A_correct = 12;
tolerance = 1e-12;
assert(abs(isocelesArea(x,y)-A_correct)<tolerance)
ans =
12
|
2 | Pass |
%%
x = 2;
y = 2;
A_correct = sqrt(3);
tolerance = 1e-12;
assert(abs(isocelesArea(x,y)-A_correct)<tolerance)
ans =
1.7321
|
3 | Pass |
%%
x = 10;
y = 2;
A_correct = sqrt(99);
tolerance = 1e-12;
assert(abs(isocelesArea(x,y)-A_correct)<tolerance)
ans =
9.9499
|
895 Solvers
17133 Solvers
Find a subset that divides the vector into equal halves
332 Solvers
299 Solvers
Magic is simple (for beginners)
2754 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!