I am trying to install numpy on my Apple Powerbook G4 running OS X Tiger (10.4.7). I am running ActivePython 2.4.3. Installing the numPy package seems to work fine butwhen I try to import it I get the following:/Users/tgrav --> pythonActivePython 2.4.3 Build 11 (ActiveState Software Inc.) based onP
Any advice on installing numpy in Python 2.5 on
WindowsXP?
-
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make you
Yes,On 8/19/06, Joris De Ridder <[EMAIL PROTECTED]> wrote:> Hi,> > Some of my code is heavily using large complex arrays, and I noticed a speed
> degression in NumPy 1.0b2 with respect to Numarray. The following code snippet> is an example that on my computer runs 10% faster in Numarray than in Num
Hi,
Some of my code is heavily using large complex arrays, and I noticed a speed
degression in NumPy 1.0b2 with respect to Numarray. The following code snippet
is an example that on my computer runs 10% faster in Numarray than in NumPy.
>>> A = zeros(100, complex)
>>> for k in range(1000):
..