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 = [0 1;-1 0];
y_correct = [2 NaN];
assert(isequaln(findfirst(x),y_correct))
M =
2×2 logical array
0 0
1 0
|
2 | Pass |
x = [0 0 -1;2 -1 0];
y_correct = [NaN 2 1];
assert(isequaln(findfirst(x),y_correct))
M =
2×3 logical array
0 0 1
0 1 0
|
3 | Pass |
x = [0 1 0 -1;-1 -1 0 1;-1 1 0 -1;0 0 0 1];
y_correct = [2 2 NaN 1];
assert(isequaln(findfirst(x),y_correct))
M =
4×4 logical array
0 0 0 1
1 1 0 0
1 0 0 1
0 0 0 0
|
1962 Solvers
Convert a numerical matrix into a cell array of strings
455 Solvers
Find the largest value in the 3D matrix
1056 Solvers
Sum the elements in either diagonal of a square matrix
178 Solvers
Replace multiples of 5 with NaN
358 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!