function y = myroundn(x,n)
y = round(x,n-1);
end
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 0.5555;
n = 1;
y_correct = 1;
assert(isequal(myroundn(x,n),y_correct))
ans =
[]
|
2 | Pass |
x = 0.5555;
n = 2;
y_correct = 0.6;
assert(isequal(myroundn(x,n),y_correct))
ans =
[]
|
3 | Pass |
x = 0.5555;
n = 3;
y_correct = 0.56;
assert(isequal(myroundn(x,n),y_correct))
ans =
[]
|
4 | Pass |
x = 0.1111;
n = 1;
y_correct = 0;
assert(isequal(myroundn(x,n),y_correct))
ans =
[]
|
5 | Pass |
x = 0.1111;
n = 2;
y_correct = 0.1;
assert(isequal(myroundn(x,n),y_correct))
ans =
[]
|
6 | Pass |
x = 0.1111;
n = 3;
y_correct = 0.11;
assert(isequal(myroundn(x,n),y_correct))
ans =
[]
|
7 | Pass |
x = 4.2736;
n = 1;
y_correct = 4;
assert(isequal(myroundn(x,n),y_correct))
ans =
[]
|
8 | Pass |
x = 4.2736;
n = 2;
y_correct = 4.3;
assert(isequal(myroundn(x,n),y_correct))
ans =
[]
|
9 | Pass |
x = 4.2736;
n = 3;
y_correct = 4.27;
assert(isequal(myroundn(x,n),y_correct))
ans =
[]
|
10 | Pass |
x = 4.2736;
n = 4;
y_correct = 4.274;
assert(isequal(myroundn(x,n),y_correct))
ans =
[]
|
1425 Solvers
Change the sign of even index entries of the reversed vector
296 Solvers
445 Solvers
214 Solvers
266 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!