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
|
739 Solvers
Arrange vector in ascending order
624 Solvers
Make a run-length companion vector
512 Solvers
07 - Common functions and indexing 6
348 Solvers
Sum of odd numbers in a matrix
311 Solvers
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!