Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = -8.8;
y_correct = -8;
assert(isequal(round_x(x),y_correct))
ans =
-8
|
2 | Pass |
x = -8.4;
y_correct = -8;
assert(isequal(round_x(x),y_correct))
ans =
-8
|
3 | Pass |
x = 8.8;
y_correct = 9;
assert(isequal(round_x(x),y_correct))
ans =
9
|
4 | Pass |
x = 8.4;
y_correct = 9;
assert(isequal(round_x(x),y_correct))
ans =
9
|
5 | Pass |
x = 8.49;
y_correct = 9;
assert(isequal(round_x(x),y_correct))
ans =
9
|
6 | Pass |
x = 128.52;
y_correct = 129;
assert(isequal(round_x(x),y_correct))
ans =
129
|
7 | Pass |
x = pi;
y_correct = 4;
assert(isequal(round_x(x),y_correct))
ans =
4
|
Replace NaNs with the number that appears to its left in the row.
2018 Solvers
Increment a number, given its digits
562 Solvers
Back to basics 3 - Temp Directory
328 Solvers
583 Solvers
1172 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!