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))
|
Given a matrix, return the last eigen value
175 Solvers
352 Solvers
What is Sum Of all elements of Matrix
292 Solvers
486 Solvers
498 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!