Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = -8.8;
y_correct = -8;
assert(isequal(round_zero(x),y_correct))
|
2 | Pass |
x = 8.8;
y_correct = 8;
assert(isequal(round_zero(x),y_correct))
|
3 | Pass |
x = 0.8;
y_correct = 0;
assert(isequal(round_zero(x),y_correct))
|
4 | Pass |
x = 0.4;
y_correct = 0;
assert(isequal(round_zero(x),y_correct))
|
5 | Pass |
x = 0;
y_correct = 0;
assert(isequal(round_zero(x),y_correct))
|
6 | Pass |
x = eps;
y_correct = 0;
assert(isequal(round_zero(x),y_correct))
|
7 | Pass |
x = pi;
y_correct = 3;
assert(isequal(round_zero(x),y_correct))
|
1263 Solvers
Change the sign of even index entries of the reversed vector
296 Solvers
find the maximum element of the matrix
348 Solvers
260 Solvers
257 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!