Finding distance between values in a column vector

15 vues (au cours des 30 derniers jours)
Allen Antony
Allen Antony le 28 Oct 2020
Commenté : Allen Antony le 28 Oct 2020
Basically I used the findpeaks function to find the time values of a graph I had. Using this code shown below.
[PeakHeight,PeakTime]=findpeaks(ECG_Clean);
disp(PeakTime)
This gave the time for when each peak occured as a column vector. I want to find the average time between each peaks but when I do the following function it gives me the average time and not the average time gap between each peak.
AvgPeakDistance = sum(PeakTime(:))/numel(PeakTime);
So basically, I was wondering how to find the distance between values in a column vector, so that I could find the average of it.
Thanks

Réponse acceptée

KSSV
KSSV le 28 Oct 2020
dPeakTime = diff(PeakTime) ; % get the difference between consecutive PEak times
AvgPeakDistance = sum(dPeakTime)/numel(dPeakTime);

Plus de réponses (0)

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by