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 | Fail |
x = 27;
y_correct = 3;
assert(abs(your_fcn_name(x)-y_correct)<1e-7)
|
2 | Fail |
x = 1;
y_correct = 1;
assert(abs(your_fcn_name(x)-y_correct)<1e-7)
|
3 | Fail |
x = 64;
y_correct = 4;
assert(abs(your_fcn_name(x)-y_correct)<1e-7)
|
4 | Fail |
x = 125;
y_correct = 5;
assert(abs(your_fcn_name(x)-y_correct)<1e-7)
|
5 | Fail |
x = 1000;
y_correct = 10;
assert(abs(your_fcn_name(x)-y_correct)<1e-7)
|
6 | Fail |
x = 729;
y_correct = 9;
assert(abs(your_fcn_name(x)-y_correct)<1e-7)
|
1900 Solvers
348 Solvers
Solving Quadratic Equations (Version 1)
427 Solvers
234 Solvers
144 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!