This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 1;
y_correct = 1/2;
assert(abs(square_area(x)-y_correct)<1e-4)
|
2 | Pass |
x = 2.828427;
y_correct = 4;
assert(abs(square_area(x)-y_correct)<1e-4)
|
3 | Pass |
x = 2;
y_correct = 2;
assert(abs(square_area(x)-y_correct)<1e-4)
|
4 | Pass |
x = 10;
y_correct = 50;
assert(abs(square_area(x)-y_correct)<1e-4)
|
5 | Pass |
x = 5;
y_correct = 12.5;
assert(abs(square_area(x)-y_correct)<1e-4)
|
519 Solvers
Reverse the elements of an array
687 Solvers
369 Solvers
228 Solvers
429 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!