find peak in data
이전 댓글 표시
hello i need to find peaks in this graph how can i do this

답변 (1개)
Star Strider
2021년 12월 18일
0 개 추천
Use either the findpeaks or islocalmax funcitons. The islocalmax function returns a logical vector, so to get the numerical indices from it, use the find function.
.
댓글 수: 2
Lior Genfon
2021년 12월 18일
Star Strider
2021년 12월 18일
I do not have your data, so I cannot write code that applies specifically to it.
Both functions have appropraite name-value pair arguments to select only the highest (or lowest) peak in a particular region. For findpeaks it is 'MinPeakDistance', and for islocalmax and islocalmin it is 'MinSeparation'.
To get the negative peaks with findpeaks, negate the first argument, then negate again to get the actual values —
[pks,plocs] = findpeaks(y, ''MinPeakDistance',100) % Peaks
[vys,vlocs] = findpeaks(-y, ''MinPeakDistance',100) % Peaks
PeakVals = pks;
ValyVals = -vlys;
Use the correct values for 'MinPeakDistance'. The location index vectors retain their validity regardless.
.
카테고리
도움말 센터 및 File Exchange에서 Descriptive Statistics에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
