1

i have written this function

def autocorr(x):
    result = np.correlate(x, x, mode='full')
    return result[int(result.size/2):]

corr=autocorr(PPG)


plt.plot(corr)

i have recived this plot.so what implies our periods, does it the peaks, the max or the min. can anyone explain this further and why does the period is found by using autocorrelation.

plotted graph

Tal K
  • 53
  • 1
  • 6

0 Answers0