Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = -8.8;
y_correct = -9;
assert(isequal(round_x(x),y_correct))
ans =
-9
|
2 | Pass |
x = -8.4;
y_correct = -9;
assert(isequal(round_x(x),y_correct))
ans =
-9
|
3 | Pass |
x = 8.8;
y_correct = 8;
assert(isequal(round_x(x),y_correct))
ans =
8
|
4 | Pass |
x = 8.4;
y_correct = 8;
assert(isequal(round_x(x),y_correct))
ans =
8
|
5 | Pass |
x = 8.49;
y_correct = 8;
assert(isequal(round_x(x),y_correct))
ans =
8
|
6 | Pass |
x = 128.52;
y_correct = 128;
assert(isequal(round_x(x),y_correct))
ans =
128
|
7 | Pass |
x = pi;
y_correct = 3;
assert(isequal(round_x(x),y_correct))
ans =
3
|
Find all elements less than 0 or greater than 10 and replace them with NaN
11633 Solvers
The Goldbach Conjecture, Part 2
964 Solvers
121 Solvers
Count number of words in string
119 Solvers
Matlab Basics - Create a row vector
205 Solvers