Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
x = [10 20 30];
y_correct = 30;
assert(isequal(FindMax(x), y_correct))
ans =
30
|
2 | Pass |
x = [1 2 3 4 3 2 1];
y_correct = 4;
assert(isequal(FindMax(x), y_correct))
ans =
4
|
Find the maximum number of decimal places in a set of numbers
740 Solvers
Getting the indices from a matrice
360 Solvers
Find nearest prime number less than input number
269 Solvers
254 Solvers
300 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!