Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 1;
n=1;
y_correct = 1;
assert(isequal(myround(x,n),y_correct))
y =
1
|
2 | Pass |
x = pi;
n=5;
y_correct = 3.14159;
assert(isequal(myround(x,n),y_correct))
y =
3.1416
|
3 | Pass |
x = 0.5*sqrt(2);
n=6;
y_correct = 0.707107;
assert(isequal(myround(x,n),y_correct))
y =
0.7071
|
4 | Pass |
x = exp(1);
n=9;
y_correct = 2.718281828;
assert(isequal(myround(x,n),y_correct))
y =
2.7183
|
5 | Pass |
x = 0.00123456;
n=6;
y_correct = 0.001235;
assert(isequal(myround(x,n),y_correct))
y =
0.0012
|
Find all elements less than 0 or greater than 10 and replace them with NaN
13054 Solvers
First non-zero element in each column
593 Solvers
Remove the two elements next to NaN value
411 Solvers
Celsius to Fahrenheit converter
389 Solvers
259 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!