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 Solvers180
Suggested Problems
-
6085 Solvers
-
Sum all integers from 1 to 2^n
17416 Solvers
-
Convert a numerical matrix into a cell array of strings
2384 Solvers
-
Try 1.5.4: Celsius to Fahrenheit
867 Solvers
-
384 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.