Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [10 20 30];
y_correct = 30;
assert(isequal(FindMax(x), y_correct))
y =
30
|
2 | Pass |
x = [1 2 3 4 3 2 1];
y_correct = 4;
assert(isequal(FindMax(x), y_correct))
y =
4
|
Return elements unique to either input
550 Solvers
216 Solvers
07 - Common functions and indexing 4
319 Solvers
Rounding off numbers to n decimals
1051 Solvers
373 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!