How to find peaks and troughs of a graph?
6 次查看(过去 30 天)
显示 更早的评论
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
0 个评论
采纳的回答
Star Strider
2015-8-3
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 个评论
Star Strider
2015-8-4
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’?
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!