Problem 1912. Local Minima
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
Paul Berglund
on 4 Oct 2013
I think that in test case 1 the answer should be [1 5].
Ned Gulley
on 4 Oct 2013
Maybe the problem statement should specifically exclude the first and last elements?
Solution Comments
Show commentsProblem Recent Solvers67
Suggested Problems
-
3525 Solvers
-
given 3 sides, find area of this triangle
808 Solvers
-
Omit columns averages from a matrix
599 Solvers
-
Find out total non zero element of matrix
275 Solvers
-
Create an anti-identity matrix
191 Solvers
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!