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))
r =
2
y =
2
r =
Empty matrix: 0-by-1
y =
2 NaN
|
2 | Pass |
%%
x = [0 0 -1;2 -1 0];
y_correct = [NaN 2 1];
assert(isequaln(findfirst(x),y_correct))
r =
Empty matrix: 0-by-1
y =
NaN
r =
2
y =
NaN 2
r =
1
y =
NaN 2 1
|
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))
r =
2
y =
2
r =
2
y =
2 2
r =
Empty matrix: 0-by-1
y =
2 2 NaN
r =
1
y =
2 2 NaN 1
|
113 Solvers
111 Solvers
387 Solvers
436 Solvers
Find the dimensions of a matrix
372 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!