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
13053 Solvers
Project Euler: Problem 3, Largest prime factor
380 Solvers
404 Solvers
273 Solvers
359 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!