Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
A = 400;
y_correct = 20;
assert(isequal(findside(A),y_correct))
|
2 | Pass |
A = 144;
y_correct = 12;
assert(isequal(findside(A),y_correct))
|
3 | Pass |
A = 225;
y_correct = 15;
assert(isequal(findside(A),y_correct))
|
4 | Pass |
A = 256;
y_correct = 16;
assert(isequal(findside(A),y_correct))
|
Replace NaNs with the number that appears to its left in the row.
2018 Solvers
284 Solvers
2099 Solvers
492 Solvers
Write a code that will follow the equation y = x * (x + x) * x.
210 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!