Skip to content

Commit

Permalink
Fix #742, while taking into account the differences between Python's …
Browse files Browse the repository at this point in the history
…indexing of vectors and Matlab's indexing (cf. Bastia et al (2004), Eq. 1)
  • Loading branch information
kempa-liehr committed Sep 1, 2020
1 parent 6248793 commit babed38
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tsfresh/feature_extraction/feature_calculators.py
Original file line number Diff line number Diff line change
Expand Up @@ -533,7 +533,7 @@ def cid_ce(x, normalize):
.. math::
\\sqrt{ \\sum_{i=1}^{n-2lag} ( x_{i} - x_{i+1})^2 }
\\sqrt{ \\sum_{i=1}^{n-1} ( x_{i} - x_{i-1})^2 }
.. rubric:: References
Expand Down

0 comments on commit babed38

Please sign in to comment.