You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think there is a problem in calculating B of sample entropy. Variable xmi and xmi should be the same, which both contain N-m templates of length m. As stated in the original paper, sample entropy only considers the first N - m vectors of length m, ensuring that, xm(i) and xm+1(i) were defined.
The text was updated successfully, but these errors were encountered:
I think 'B = np.sum([np.sum(np.abs(xmii-xmj).max(axis=1) <= r)-1 for xmii in xmi])' is revised ‘B = np.sum([np.sum(np.abs(xmii-xmj).max(axis=1) <= r)-1 for xmii in xmj])’
I think there is a problem in calculating B of sample entropy. Variable xmi and xmi should be the same, which both contain N-m templates of length m. As stated in the original paper, sample entropy only considers the first N - m vectors of length m, ensuring that, xm(i) and xm+1(i) were defined.
The text was updated successfully, but these errors were encountered: