How to find peaks and troughs of a graph?

21 views (last 30 days)
the function findpeaks will find the hall peaks (top and bottom), and I want to find the top peaks and bottom peaks separately. I know that I have to specify a limit (value) and say: if any number above this value consider it as peak, else consider it as trough, but I don't know how to transfer it into a matlab code? I am dealing with vectors: pks=findpeaks(RunUp.Set4(x,y)); x is time y is a second column in a file, this column contains the peaks, so I should play with numbers of this variable(y) to get the peaks and troughs Thanks

Accepted Answer

Star Strider
Star Strider on 3 Aug 2015
To get the troughs, use findpeaks on the negative of your signal, in a separate call to findpeaks. This turns the troughs into peaks, and findpeaks will locate them as well.
  2 Comments
Zamzam
Zamzam on 4 Aug 2015
Appreciate your prompt reply. one more question,how to do it matlab?
Star Strider
Star Strider on 4 Aug 2015
My pleasure.
You have to describe your problem in a bit more detail, probably posting relevant parts of your code (and data) with what you have and what you want.
It seems to me you are doing it in MATLAB. What do you mean by ‘how to do it matlab’?

Sign in to comment.

More Answers (0)

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!