This solution is outdated. To rescore this solution, sign in.
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 | Fail |
x = [101; 21; 10000; 510];
y_correct = 21;
assert(isequal(your_fcn_name(x),y_correct))
|
Rotate input square matrix 90 degrees CCW without rot90
380 Solvers
856 Solvers
Who is the smartest MATLAB programmer?
561 Solvers
462 Solvers
find the surface area of a cube
336 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!