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 = 27;
y_correct = 3;
assert(abs(your_fcn_name(x)-y_correct)<1e-7)
|
2 | Pass |
x = 1;
y_correct = 1;
assert(abs(your_fcn_name(x)-y_correct)<1e-7)
|
3 | Pass |
x = 64;
y_correct = 4;
assert(abs(your_fcn_name(x)-y_correct)<1e-7)
|
4 | Pass |
x = 125;
y_correct = 5;
assert(abs(your_fcn_name(x)-y_correct)<1e-7)
|
5 | Pass |
x = 1000;
y_correct = 10;
assert(abs(your_fcn_name(x)-y_correct)<1e-7)
|
6 | Pass |
x = 729;
y_correct = 9;
assert(abs(your_fcn_name(x)-y_correct)<1e-7)
|
531 Solvers
07 - Common functions and indexing 2
316 Solvers
331 Solvers
192 Solvers
326 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!