<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
  <head>
    <meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
  </head>
  <body text="#000000" bgcolor="#ffffff">
    On 11/15/2011 04:28 PM, Bruce Southey wrote:
    <blockquote cite="mid:4EC2852F.9050000@gmail.com" type="cite">
      <meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
      On 11/14/2011 10:05 AM, Andreas Müller wrote:
      <blockquote cite="mid:4EC13C2D.2070504@ais.uni-bonn.de"
        type="cite">
        <pre wrap="">On 11/14/2011 04:23 PM, David Cournapeau wrote:
</pre>
        <blockquote type="cite">
          <pre wrap="">On Mon, Nov 14, 2011 at 12:46 PM, Andreas Müller
<a moz-do-not-send="true" class="moz-txt-link-rfc2396E" href="mailto:amueller@ais.uni-bonn.de"><amueller@ais.uni-bonn.de></a>  wrote:
</pre>
          <blockquote type="cite">
            <pre wrap="">Hi everybody.
When I did some normalization using numpy, I noticed that numpy.std uses
more ram than I was expecting.
A quick google search gave me this:
<a moz-do-not-send="true" class="moz-txt-link-freetext" href="http://luispedro.org/software/ncreduce">http://luispedro.org/software/ncreduce</a>
The site claims that std and other reduce operations are implemented
naively with many temporaries.
Is that true? And if so, is there a particular reason for that?
This issues seems quite easy to fix.
In particular the link I gave above provides code.
</pre>
          </blockquote>
          <pre wrap="">The code provided only implements a few special cases: being more
efficient in those cases only is indeed easy.
</pre>
        </blockquote>
        <pre wrap="">I am particularly interested in the std function.
Is this implemented as a separate function or an instantiation
of a general reduce operations?

_______________________________________________
NumPy-Discussion mailing list
<a moz-do-not-send="true" class="moz-txt-link-abbreviated" href="mailto:NumPy-Discussion@scipy.org">NumPy-Discussion@scipy.org</a>
<a moz-do-not-send="true" class="moz-txt-link-freetext" href="http://mail.scipy.org/mailman/listinfo/numpy-discussion">http://mail.scipy.org/mailman/listinfo/numpy-discussion</a>
</pre>
      </blockquote>
      The<span class="mw-headline" id="On-line_algorithm"> 'On-line
        algorithm</span>' (<a moz-do-not-send="true"
href="http://en.wikipedia.org/wiki/Algorithms_for_calculating_variance#On-line_algorithm">http://en.wikipedia.org/wiki/Algorithms_for_calculating_variance#On-line_algorithm)</a>
      could save you storage. I would presume if you know cython that
      you can probably make it quick as well (to address the loop over
      the data).<br>
      <span class="Apple-style-span" style="border-collapse: separate;
        color: rgb(0, 0, 0); font-family: sans-serif; font-size: 16px;
        font-style: normal; font-variant: normal; font-weight: normal;
        letter-spacing: normal; line-height: normal; orphans: 2;
        text-indent: 0px; text-transform: none; white-space: normal;
        widows: 2; word-spacing: 0px;"><span class="Apple-style-span"
          style="font-size: 13px; line-height: 19px;"></span></span><br>
    </blockquote>
    <br>
    My question was more along the lines of "why doesn't numpy do the
    online algorithm".<br>
    <br>
  </body>
</html>