could you tell me what is the leading solution that is the size of 12
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = -8.8;
y_correct = -9;
assert(isequal(round_x(x),y_correct))
y =
-9
|
2 | Pass |
x = -8.4;
y_correct = -9;
assert(isequal(round_x(x),y_correct))
y =
-9
|
3 | Pass |
x = 8.8;
y_correct = 8;
assert(isequal(round_x(x),y_correct))
y =
8
|
4 | Pass |
x = 8.4;
y_correct = 8;
assert(isequal(round_x(x),y_correct))
y =
8
|
5 | Pass |
x = 8.49;
y_correct = 8;
assert(isequal(round_x(x),y_correct))
y =
8
|
6 | Pass |
x = 128.52;
y_correct = 128;
assert(isequal(round_x(x),y_correct))
y =
128
|
7 | Pass |
x = pi;
y_correct = 3;
assert(isequal(round_x(x),y_correct))
y =
3
|
829 Solvers
The Hitchhiker's Guide to MATLAB
2874 Solvers
480 Solvers
273 Solvers
Tick. Tock. Tick. Tock. Tick. Tock. Tick. Tock. Tick. Tock.
761 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!