Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 0.5555;
n = 1;
y_correct = 1;
assert(isequal(myroundn(x,n),y_correct))
y =
1
|
2 | Pass |
x = 0.5555;
n = 2;
y_correct = 0.6;
assert(isequal(myroundn(x,n),y_correct))
y =
0.6000
|
3 | Pass |
x = 0.5555;
n = 3;
y_correct = 0.56;
assert(isequal(myroundn(x,n),y_correct))
y =
0.5600
|
4 | Pass |
x = 0.1111;
n = 1;
y_correct = 0;
assert(isequal(myroundn(x,n),y_correct))
y =
0
|
5 | Pass |
x = 0.1111;
n = 2;
y_correct = 0.1;
assert(isequal(myroundn(x,n),y_correct))
y =
0.1000
|
6 | Pass |
x = 0.1111;
n = 3;
y_correct = 0.11;
assert(isequal(myroundn(x,n),y_correct))
y =
0.1100
|
7 | Pass |
x = 4.2736;
n = 1;
y_correct = 4;
assert(isequal(myroundn(x,n),y_correct))
y =
4
|
8 | Pass |
x = 4.2736;
n = 2;
y_correct = 4.3;
assert(isequal(myroundn(x,n),y_correct))
y =
4.3000
|
9 | Pass |
x = 4.2736;
n = 3;
y_correct = 4.27;
assert(isequal(myroundn(x,n),y_correct))
y =
4.2700
|
10 | Pass |
x = 4.2736;
n = 4;
y_correct = 4.274;
assert(isequal(myroundn(x,n),y_correct))
y =
4.2740
|
926 Solvers
Back to basics 6 - Column Vector
908 Solvers
Rotate input square matrix 90 degrees CCW without rot90
380 Solvers
Right Triangle Side Lengths (Inspired by Project Euler Problem 39)
511 Solvers
413 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!