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))
|
926 Solvers
Return the first and last character of a string
3447 Solvers
724 Solvers
254 Solvers
Switch matrix to a column vector
260 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!