Given a vector of data x, find the values of local minimum that is smaller than its neighbor elements. For example, if
x = [ 1 2 5 8 7 5 9 10]
a local minimum equal to 5 can be found. Return a vector of local minima.
Solution Stats
Problem Comments
2 Comments
Solution Comments
Show comments
Loading...
Problem Recent Solvers69
Suggested Problems
-
9163 Solvers
-
Find all elements less than 0 or greater than 10 and replace them with NaN
15797 Solvers
-
Get the length of a given vector
13403 Solvers
-
We love vectorized solutions. Problem 1 : remove the row average.
892 Solvers
-
Let's get back to school, and create multiplication tables
241 Solvers
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
I think that in test case 1 the answer should be [1 5].
Maybe the problem statement should specifically exclude the first and last elements?