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 Solvers181
Suggested Problems
-
Project Euler: Problem 6, Natural numbers, squares and sums.
2538 Solvers
-
Project Euler: Problem 9, Pythagorean numbers
1385 Solvers
-
Remove entire row and column in the matrix containing the input values
555 Solvers
-
Solving Quadratic Equations (Version 1)
504 Solvers
-
String Array Basics, Part 1: Convert Cell Array to String Array; No Missing Values
1966 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.