How to catch first 10 peaks out of 17 peaks of a time series data without reducing time series data?

2 Ansichten (letzte 30 Tage)
I have 100 time series data. I want to find average peak to peak interval. But the intervals are not same in all 100 time series data. Intervals vary from 14 to 18 in some of data. So I am thinking to take first 10 peak intervals in all cases and find their average. Anybody please help.

Antworten (1)

Image Analyst
Image Analyst am 21 Mai 2021
Unfortunately you forgot to attach your data.
I'd use findpeaks(). For one signal of y vs. t ....
[peakValues, indexesOfPeaks] = findpeaks(y);
plot(t, y, 'b-', 'LineWidth', 2);
grid on;
hold on;
plot(t(indexesOfPeaks), peakValues, 'r^', 'LineWidth', 2, 'MarkerSize', 14);
% Find first 10 peak spacings
peakSpacings = diff(t(indexesOfPeaks));
lastIndex = max([10, length(peakSpacings)]);
meanPeakSpacing = mean(peakSpacings(1:lastIndex))
fprintf('The average spacing between the first %d peaks is %f.\n', lastIndex, meanPeakSpacing);
Repeat for your other 99 signals.

Community Treasure Hunt

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

Start Hunting!

Translated by