필터 지우기
필터 지우기

How to make 'MinPeakDistance' consider first point close to last point in findpeaks ?

조회 수: 2 (최근 30일)
Hi,
I am having trouble with findpeaks. I want to find the two highest peaks in a set of data, which are not too close from one another. I use the following function :
findpeaks(data,'SortStr','descend','NPeaks',2,'MinPeakDistance',min_distance);
The problem is that I want it to consider the first points and the last ones as close to one another, like periodic boundary condition. Indeed, here it may return two peaks that are at the beginning and at the end of the data whereas their distance is smaller than min_distance considering periodic boundary condition.
How can I deal with this ?

답변 (1개)

Peter Cook
Peter Cook 2016년 6월 15일
If your signal is periodic, you could try to circshift() the signal a couple times (by say, length(signal)/4 or length(signal)/3) and see if you get the same result.

카테고리

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