<html><head><meta http-equiv="Content-Type" content="text/html charset=iso-8859-1"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space; "><br><div><div>On 10.10.2013, at 19:27, David Goldsmith <<a href="mailto:d.l.goldsmith@gmail.com">d.l.goldsmith@gmail.com</a>> wrote:</div><blockquote type="cite"><div dir="ltr"><div class="gmail_extra"><div class="gmail_quote"><blockquote class="gmail_quote" style="margin: 0px 0px 0px 0.8ex; border-left-width: 1px; border-left-style: solid; border-left-color: rgb(204, 204, 204); padding-left: 1ex; position: static; z-index: auto; ">On Wed, Oct 9, 2013 at 7:48 PM, Bernhard Spinnler<br>
<<a href="mailto:Bernhard.Spinnler@gmx.net">Bernhard.Spinnler@gmx.net</a>> wrote:<br>
> Hi Richard,<br>
><br>
> Ah, I searched the list but didn't find those posts before?<br>
><br>
> I can easily imagine that correlation is defined differently in different<br>
> disciplines. Both ways are correct and it's just a convention or definition.<br>
> In my field (Digital Communications, Digital Signal Processing) the vast<br>
> majority uses the convention implemented by the code. Here are a few<br>
> examples of prominent text books:<br>
><br>
> - Papoulis, "Probaility, Random Variables, and Stochastic Processes",<br>
> McGraw-Hill, 2nd ed.<br>
> - Benvenuto, Cherubini, "Algorithms for Communications Systems and their<br>
> Applications", Wiley.<br>
> - Carlson, "Communication Systems" 4th ed. 2002, McGraw-Hill.<br>
><br>
> Last not least, Matlab's xcorr() function behaves exactly like correlate()<br>
> does right now, see<br>
> - <a href="http://www.mathworks.de/de/help/signal/ref/xcorr.html" target="_blank">http://www.mathworks.de/de/help/signal/ref/xcorr.html</a><br>
><br>
> But, as you say, the most important aspect might be, that most people will<br>
> probably prefer changing the docs instead of changing the code.<br>
<br>
Yeah, unless the current behaviour is actually broken or redundant in<br>
some way, we're not going to switch from one perfectly good convention<br>
to another perfectly good convention and break everyone's code in the<br>
process.<br>
<br>
The most helpful thing would be if you could file a pull request that<br>
just changes the docstring to what you think it should be. Extra bonus<br>
points if it points out that there is another definition some people<br>
might be expecting instead, and explains how those people can use the<br>
existing functions to get what they want. :-)<br>
<br>
-n<br>
</blockquote></div><br></div><div class="gmail_extra">IMHO, "point[ing] out that there is another definition some people might be expecting instead, and explain[ing] how those people can use the existing functions to get what they want" should be a requirement for the docstring ("Notes" section), not merely worth "extra bonus points."  But then I'm not, presently, in a position to edit the docstring myself, so that's just MHO.  <br>
<br>IAE, I found what appears to me to be another "vote" for the extant docstring: Box & Jenkins, 1976, "Time Series Analysis: Forecasting and Control," Holden-Day, Oakland, pg. 374.  Perhaps a "switch" (with a default value that maintains current definition, so that extant uses would not require a code change) c/should be added to the function signature so that users can get easily get what they want?<br>
<br></div></div></blockquote><div><br></div><div>As pointed out in another post in this thread, there are now at least three different definitions of correlation which are in use in different disciplines of science and engineering:</div><div><br></div><div><div>Numpy code:</div><div><br></div><div>z_numpyCode[k] = sum_n a[n+k] * conj(v[n])</div><div><br></div><div><br></div><div>Numpy docs:</div><div><br></div><div>z_numpyDoc[k] = sum_n a[n] * conj(v[n+k])</div><div>                         = sum_n a[n-k] * conj(v[n])</div><div>                         = z_numpyCode[-k]</div><div><br></div><div><br></div><div>Wolfram Mathworld:</div><div><br></div><div>z_mmca[k] = sum_n conj(a[n]) * v[n+k]</div><div>                 = conj( sum_n a[n] * conj(v[n+k]) )</div><div>                 = conj( z_numpyDoc[k] )</div><div>                 = conj( z_numpyCode[-k] )</div><div><br></div><div>I'm sure there are even more if you search long enough. But shouldn't the primary objective be to bring the docs in line with the code (which is definitely not "broken")? It took me 2 days of debugging my code recently only to discover that numpy correlate() was calculating a different correlation than the docs said.</div><div><br></div><div>I can try to come up with a proposal for the docs. Could anyone point me to where I can find the docs? I can clone the numpy repo, however, I'm not a numpy developer.</div><div><br></div><div>Best wishes,</div><div><span class="Apple-tab-span" style="white-space:pre">  </span>Bernhard</div></div><br></div><br></body></html>