@@ -1673,8 +1673,7 @@ def acorr(self, x, **kwargs):
1673
1673
normalization.
1674
1674
1675
1675
normed : boolean, optional, default: True
1676
- if True, normalize the data by the autocorrelation at the 0-th
1677
- lag.
1676
+ if True, input vectors are normalised to unit length.
1678
1677
1679
1678
usevlines : boolean, optional, default: True
1680
1679
if True, Axes.vlines is used to plot the vertical lines from the
@@ -1723,6 +1722,8 @@ def xcorr(self, x, y, normed=True, detrend=mlab.detrend_none,
1723
1722
"""
1724
1723
Plot the cross correlation between *x* and *y*.
1725
1724
1725
+ The correlation with lag k is defined as sum_n x[n+k] * conj(y[n]).
1726
+
1726
1727
Parameters
1727
1728
----------
1728
1729
@@ -1737,8 +1738,7 @@ def xcorr(self, x, y, normed=True, detrend=mlab.detrend_none,
1737
1738
normalization.
1738
1739
1739
1740
normed : boolean, optional, default: True
1740
- if True, normalize the data by the autocorrelation at the 0-th
1741
- lag.
1741
+ if True, input vectors are normalised to unit length.
1742
1742
1743
1743
usevlines : boolean, optional, default: True
1744
1744
if True, Axes.vlines is used to plot the vertical lines from the
0 commit comments