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 Solvers184
Suggested Problems
-
Find relatively common elements in matrix rows
2157 Solvers
-
Number of 1s in a binary string
11461 Solvers
-
Find the maximum number of decimal places in a set of numbers
3562 Solvers
-
Find out sum of all elements of given Matrix
539 Solvers
-
Find the sides of an isosceles triangle when given its area and height from its base to apex
2217 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.