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))
|
How to find the position of an element in a vector without using the find function
2477 Solvers
Number of 1s in a binary string
2818 Solvers
middleAsColumn: Return all but first and last element as a column vector
387 Solvers
Getting the indices from a vector
3206 Solvers
376 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!