Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [1 2 5 12 10 7];
y_correct = [1 2 NaN 12 NaN 7];
assert(isequaln(repnan(x),y_correct))
|
2 | Pass |
x = [-1 7 -15 20 11 3];
y_correct = [-1 7 NaN NaN 11 3];
assert(isequaln(repnan(x),y_correct))
|
Find relatively common elements in matrix rows
865 Solvers
1327 Solvers
Back to basics 13 - Input variables
233 Solvers
Given a 4x4 matrix, swap the two middle columns
516 Solvers
292 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!