Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [3 6 8 5];
y_correct = 3;
assert(isequal(matrix_min(x),y_correct))
|
2 | Pass |
x = [3 -6; 8 5];
y_correct = -6;
assert(isequal(matrix_min(x),y_correct))
|
3 | Pass |
x = [101; 21; 10000; 510];
y_correct = 21;
assert(isequal(matrix_min(x),y_correct))
|
17211 Solvers
convert matrix to single column
306 Solvers
Find the index of n in magic(n)
160 Solvers
277 Solvers
302 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!