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))
|
How to find the position of an element in a vector without using the find function
2477 Solvers
Create a cell array out of a struct
508 Solvers
Arrange Vector in descending order
4083 Solvers
Switch matrix to a column vector
260 Solvers
264 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!