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))
|
1398 Solvers
Find the two most distant points
1628 Solvers
531 Solvers
404 Solvers
484 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!