Problem 2476. Max Change in Consecutive Elements
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
goc3
on 15 Mar 2017
Additional test cases have been added.
Rafael S.T. Vieira
on 24 Jul 2020
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.
Solution Comments
Show commentsProblem Recent Solvers177
Suggested Problems
-
992 Solvers
-
Project Euler: Problem 10, Sum of Primes
2086 Solvers
-
Get the length of a given vector
12807 Solvers
-
Remove entire row and column in the matrix containing the input values
543 Solvers
-
Write a function man that takes a row vector v and returns a matrix H as follows..
643 Solvers
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!