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