Input v is a vector. Return all the elements of v which are not a local minimum or maximum.
Example:
v = [1 2 3 4 5] Output = [1 2 3 4 5]
v = [1 2 3 2 1] Output = [1 2 2 1]
v = [1 2 1 0 2 1] Output = [1 1 1]
Solution Stats
Problem Comments
1 Comment
Solution Comments
Show comments
Loading...
Problem Recent Solvers98
Suggested Problems
-
Find the peak 3n+1 sequence value
2571 Solvers
-
Project Euler: Problem 9, Pythagorean numbers
1400 Solvers
-
469 Solvers
-
Create a square matrix of multiples
502 Solvers
-
Number of 1s in a binary string
11419 Solvers
More from this Author44
Problem Tags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
findpeaks is not working