Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = 0./[6 4 0 3 -9];
y_correct = [0 0 1 0 0];
assert(isequal(return_nans(x),y_correct))
ans =
1×5 logical array
0 0 1 0 0
|
2 | Pass |
x = [1 1 NaN NaN];
y_correct = [0 0 1 1];
assert(isequal(return_nans(x),y_correct))
ans =
1×4 logical array
0 0 1 1
|
3 | Pass |
x =[1 1 NaN NaN; 5,2,3,NaN];
y_correct = [0 0 1 1; 0 0 0 1];
assert(isequal(return_nans(x),y_correct))
ans =
2×4 logical array
0 0 1 1
0 0 0 1
|
273 Solvers
07 - Common functions and indexing 6
282 Solvers
197 Solvers
201 Solvers
71 Solvers