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

6 Ansichten (letzte 30 Tage)
raym
raym am 12 Jan. 2025
Beantwortet: raym am 13 Jan. 2025
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.

Akzeptierte Antwort

raym
raym am 13 Jan. 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));

Weitere Antworten (1)

Walter Roberson
Walter Roberson am 12 Jan. 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