This solution is locked. To view this solution, you need to provide a solution of the same size or smaller.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x =[ 1 2 NaN 4 1 3 7 NaN 1 4 NaN 2];
y_correct =[ NaN NaN 2 NaN 4 NaN NaN 3 7 NaN NaN NaN 4 NaN 2];
assert(isequalwithequalnans(replaceNaN(x),y_correct))
|
2 | Pass |
%%
x =[ 1 NaN 1 NaN 1];
y_correct =[ NaN NaN NaN NaN NaN NaN NaN NaN ];
assert(isequalwithequalnans(replaceNaN(x),y_correct))
|
819 Solvers
Back to basics 18 - justification
176 Solvers
Sum the elements in either diagonal of a square matrix
178 Solvers
07 - Common functions and indexing 5
314 Solvers
277 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!