How to find peaks and troughs of a graph?

조회 수: 2 (최근 30일)
Zamzam
Zamzam 2015년 8월 3일
댓글: Star Strider 2015년 8월 4일
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

채택된 답변

Star Strider
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
Zamzam
Zamzam 2015년 8월 4일
Appreciate your prompt reply. one more question,how to do it matlab?
Star Strider
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개)

카테고리

Help CenterFile Exchange에서 Descriptive Statistics에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by