Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [3 6 8 5];
y_correct = 3;
assert(isequal(matrix_min(x),y_correct))
|
2 | Fail |
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))
|
754 Solvers
289 Solvers
530 Solvers
272 Solvers
Find out sum of all elements of given Matrix
349 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!