How to find the period between group of regularly spaced hot-spots?

6 visualizzazioni (ultimi 30 giorni)
I have a group of numbers with values enriched at uniformly regularly spaced hot-spots.
There is no other information available.
How to get the estimated length of the space between these hot-spots?
For this example, the interval is about 128.

Risposta accettata

raym
raym il 13 Gen 2025
[a,aBinCenter] = hist(Data,1000);
a_gauss = imgaussfilt(imgaussfilt(imgaussfilt(a,10),10),10);
[Ypk,Xpk] = findpeaks(a_gauss);
aGapEstimation = mean(diff(Xpk))*(aBinCenter(2)-aBinCenter(1));

Più risposte (1)

Walter Roberson
Walter Roberson il 12 Gen 2025
Approximate_gap = mean(diff(find(abs(diff(YourSignal)) > TOLERANCE)));

Community Treasure Hunt

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

Start Hunting!

Translated by