Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
a = [12 78 5 23 09 67 82 18];
y_correct = [5 82];
assert(isequal(min_max(a),y_correct))
ans =
5 82
|
2 | Pass |
a = [12 178 15 23 09 67 82 18];
y_correct = [09 178];
assert(isequal(min_max(a),y_correct))
ans =
9 178
|
Who has power to do everything in this world?
318 Solvers
484 Solvers
Element by element multiplication of two vectors
268 Solvers
Flip the vector from right to left
2666 Solvers
Matlab Basics II - Max & Index of Max
188 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!