The current development release of ScientificPython (2.7.3) supports
NumPy. The release notes are here:
http://sourcesup.cru.fr/frs/shownotes.php?release_id=634
I updated the "Porting to NumPy" wiki page:
http://www.scipy.org/Porting_to_NumPy
--
Jarrod Millman
Computational Infrastructure for R
Hey,
After reading Travis' email about getting more projects ported to
Numpy, I sent an email to the RPy developer's asking when they would
commit Travis' patch. Anyway, George Warnes replied that he would
apply it this week (see the forwarded email below).
I would encourage anyone who is using
On 2/5/07, Pierre GM <[EMAIL PROTECTED]> wrote:
> On Monday 05 February 2007 11:32:22 Jeremy Conlin wrote:
> > Thanks for clarifying that. I didn't understand what the
> > __array_finalize__ did.
>
> That means I should clarify some points on the wiki, then.
> A good exercise is to put some tempor
On 2/5/07, Warren Focke <[EMAIL PROTECTED]> wrote:
On Mon, 5 Feb 2007, Timothy Hochberg wrote:
> On 2/5/07, Hanno Klemm <[EMAIL PROTECTED]> wrote:
> [numpy.fft[
>
> The packing of the result is "standard": If A = fft(a, n), then A[0]
> > contains the zero-frequency term, A[1:n/2+1] co
On Mon, 5 Feb 2007, Timothy Hochberg wrote:
> On 2/5/07, Hanno Klemm <[EMAIL PROTECTED]> wrote:
> [numpy.fft[
>
> The packing of the result is "standard": If A = fft(a, n), then A[0]
> > contains the zero-frequency term, A[1:n/2+1] contains the
> > positive-frequency terms, and A[n/2
Keith Goodman wrote:
> Will the latest numpy from svn work with matplotlib 0.87.7?
It should. We are committed to backwards compatibility both at the Python level
and the C binary level.
--
Robert Kern
"I have come to believe that the whole world is an enigma, a harmless enigma
that is made te
On Monday 05 February 2007 11:32:22 Jeremy Conlin wrote:
> Thanks for clarifying that. I didn't understand what the
> __array_finalize__ did.
That means I should clarify some points on the wiki, then.
A good exercise is to put some temporary comments in your code in __new__ and
__array_finalize
On 2/5/07, Francesc Altet <[EMAIL PROTECTED]> wrote:
> El dl 05 de 02 del 2007 a les 08:45 -0800, en/na Keith Goodman va
> escriure:
> > This eats up memory quickly on my system.
> >
> > import numpy.matlib as M
> >
> > def memleak():
> > a = M.randn(500, 1)
> > while True:
> > a =
On 2/5/07, Hanno Klemm <[EMAIL PROTECTED]> wrote:
[numpy.fft[
The packing of the result is "standard": If A = fft(a, n), then A[0]
contains the zero-frequency term, A[1:n/2+1] contains the
positive-frequency terms, and A[n/2+1:] contains the
negative-frequency
terms, in order of d
El dl 05 de 02 del 2007 a les 08:45 -0800, en/na Keith Goodman va
escriure:
> This eats up memory quickly on my system.
>
> import numpy.matlib as M
>
> def memleak():
> a = M.randn(500, 1)
> while True:
> a = a.argsort(0)
Yeah, the guilty in this case is argsort():
http://proje
This eats up memory quickly on my system.
import numpy.matlib as M
def memleak():
a = M.randn(500, 1)
while True:
a = a.argsort(0)
___
Numpy-discussion mailing list
Numpy-discussion@scipy.org
http://projects.scipy.org/mailman/listinfo/nu
On 2/4/07, Pierre GM <[EMAIL PROTECTED]> wrote:
> On Sunday 04 February 2007 20:22:44 Jeremy Conlin wrote:
> > I have subclassed the numpy.ndarray object, but need some help setting
> > some attributes. I have read http://scipy.org/Subclasses but it
> > doesn't provide the answer I am looking for.
The frequencies produced by the two recipies are not the same. But the
DFT is periodic in both frequency and time. So whether you think that the
number in bin in n/2 should correspond to frequency n/2 or -n/2, it's the
same number.
w
On Mon, 5 Feb 2007, Hanno Klemm wrote:
>
> Hi there,
>
> I h
Hi there,
I have a question regarding the definitions surrounding FFTs. The help
to numpy.fft.fft says:
>>> help(N.fft.fft)
Help on function fft in module numpy.fft.fftpack:
fft(a, n=None, axis=-1)
fft(a, n=None, axis=-1)
Will return the n point discrete Fourier transform of a. n
d
14 matches
Mail list logo