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)
|
2 | Pass |
x = 2;
y = 2;
A_correct = sqrt(3);
tolerance = 1e-12;
assert(abs(isocelesArea(x,y)-A_correct)<tolerance)
|
3 | Pass |
x = 10;
y = 2;
A_correct = sqrt(99);
tolerance = 1e-12;
assert(abs(isocelesArea(x,y)-A_correct)<tolerance)
|
All your base are belong to us
463 Solvers
Back to basics 9 - Indexed References
392 Solvers
Make an awesome ramp for a tiny motorcycle stuntman
334 Solvers
Calculate the area of a triangle between three points
874 Solvers
2042 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!