This solution is outdated. To rescore this solution, sign in.
Test | Status | Code Input and Output |
---|---|---|
1 | Pass |
%%
x= [2 12 4 6 9 4 3 1 19 7];
y_correct = [12 9 19];
assert(isequal(find_peak(x),y_correct))
|
2 | Pass |
%%
x=[ones(1,9) 10 zeros(1,10)];
y_correct = 10;
assert(isequal(find_peak(x),y_correct))
|
3 | Pass |
%%
x=[1:10 100 -4 2 0 0 4 5 6 0]
y_correct = [100 2 6];
assert(isequal(find_peak(x),y_correct))
x =
Columns 1 through 16
1 2 3 4 5 6 7 8 9 10 100 -4 2 0 0 4
Columns 17 through 19
5 6 0
|
2240 Solvers
Return elements unique to either input
550 Solvers
Return the first and last character of a string
3454 Solvers
07 - Common functions and indexing 1
338 Solvers
Pernicious Anniversary Problem
735 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!