Test | Status | Code Input and Output |
---|---|---|
1 | Fail |
x=[1 2 3 NaN 4 5 6];
y_correct=[1 2 5 6];
assert(isequal(NaN_window_delete(x),y_correct))
|
2 | Fail |
x=[10 20 3 NaN 4 50 NaN 6];
y_correct=[10 20];
assert(isequal(NaN_window_delete(x),y_correct))
|
3 | Fail |
x=[NaN 20 3 5 4 50 55 NaN];
y_correct=[3 5 4 50];
assert(isequal(NaN_window_delete(x),y_correct))
|
4 | Fail |
x=[10 20 3 5 NaN 4 50 55 NaN 60 80 90 NaN 100 110 ];
y_correct=[10 20 3 50 80 110];
assert(isequal(NaN_window_delete(x),y_correct))
|
Back to basics 22 - Rotate a matrix
763 Solvers
Implement simple rotation cypher
943 Solvers
How many monitors are connected ?
127 Solvers
404 Solvers
07 - Common functions and indexing 6
348 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!