Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 1;
n=1;
y_correct = 1;
assert(isequal(myround(x,n),y_correct))
|
2 | Pass |
x = pi;
n=5;
y_correct = 3.14159;
assert(isequal(myround(x,n),y_correct))
|
3 | Pass |
x = 0.5*sqrt(2);
n=6;
y_correct = 0.707107;
assert(isequal(myround(x,n),y_correct))
|
4 | Pass |
x = exp(1);
n=9;
y_correct = 2.718281828;
assert(isequal(myround(x,n),y_correct))
|
5 | Pass |
x = 0.00123456;
n=6;
y_correct = 0.001235;
assert(isequal(myround(x,n),y_correct))
|
Find the sum of all the numbers of the input vector
31946 Solvers
Create matrix of replicated elements
321 Solvers
343 Solvers
1172 Solvers
Height of a right-angled triangle
448 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!