If an array is given as input then find the index of consecutive elements that represent maximum change.
Example:
Input x = [1 10 3 0 2 4 0 -8 9 1]
Output y = [8 9]
Solution Stats
Problem Comments
2 Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers178
Suggested Problems
-
7465 Solvers
-
First non-zero element in each column
942 Solvers
-
Remove the two elements next to NaN value
702 Solvers
-
ベクトル [1 2 3 4 5 6 7 8 9 10] の作成
594 Solvers
-
372 Solvers
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
Additional test cases have been added.
This problem needs more tests. For instance, x = [1 10 3 0 2 4 0 8 -9 1] is a case with a non-positive difference, but a maximum change, which would make many solutions fail.