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))
|
2 | Pass |
%%
x = [0 0 -1;2 -1 0];
y_correct = [NaN 2 1];
assert(isequaln(findfirst(x),y_correct))
|
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))
|
Getting the row and column location from a matrix
236 Solvers
Getting the indices from a matrice
360 Solvers
3064 Solvers
309 Solvers
249 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!