Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = -8.8;
y_correct = -9;
assert(isequal(round_x(x),y_correct))
|
2 | Pass |
x = -8.4;
y_correct = -8;
assert(isequal(round_x(x),y_correct))
|
3 | Pass |
x = 8.8;
y_correct = 9;
assert(isequal(round_x(x),y_correct))
|
4 | Pass |
x = 8.4;
y_correct = 8;
assert(isequal(round_x(x),y_correct))
|
5 | Pass |
x = 8.49;
y_correct = 8;
assert(isequal(round_x(x),y_correct))
|
6 | Pass |
x = 128.52;
y_correct = 129;
assert(isequal(round_x(x),y_correct))
|
7 | Pass |
x = pi;
y_correct = 3;
assert(isequal(round_x(x),y_correct))
|
Sum all integers from 1 to 2^n
8412 Solvers
Arrange Vector in descending order
4075 Solvers
The sum of the numbers in the vector
426 Solvers
2334 Solvers
556 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!