Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 0.5555;
n = 1;
y_correct = 1;
assert(isequal(myroundn(x,n),y_correct))
|
2 | Pass |
x = 0.5555;
n = 2;
y_correct = 0.6;
assert(isequal(myroundn(x,n),y_correct))
|
3 | Pass |
x = 0.5555;
n = 3;
y_correct = 0.56;
assert(isequal(myroundn(x,n),y_correct))
|
4 | Pass |
x = 0.1111;
n = 1;
y_correct = 0;
assert(isequal(myroundn(x,n),y_correct))
|
5 | Pass |
x = 0.1111;
n = 2;
y_correct = 0.1;
assert(isequal(myroundn(x,n),y_correct))
|
6 | Pass |
x = 0.1111;
n = 3;
y_correct = 0.11;
assert(isequal(myroundn(x,n),y_correct))
|
7 | Pass |
x = 4.2736;
n = 1;
y_correct = 4;
assert(isequal(myroundn(x,n),y_correct))
|
8 | Pass |
x = 4.2736;
n = 2;
y_correct = 4.3;
assert(isequal(myroundn(x,n),y_correct))
|
9 | Pass |
x = 4.2736;
n = 3;
y_correct = 4.27;
assert(isequal(myroundn(x,n),y_correct))
|
10 | Pass |
x = 4.2736;
n = 4;
y_correct = 4.274;
assert(isequal(myroundn(x,n),y_correct))
|
Make one big string out of two smaller strings
1148 Solvers
middleAsColumn: Return all but first and last element as a column vector
387 Solvers
Arrange vector in ascending order
624 Solvers
251 Solvers
260 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!