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))
|
Find all elements less than 0 or greater than 10 and replace them with NaN
13055 Solvers
3895 Solvers
Back to basics 6 - Column Vector
908 Solvers
401 Solvers
Arrange vector in ascending order
624 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!