[Numpy-discussion] Can't access NumPy documentation elements

2012-04-05 Thread Whitcomb, Mr. Tim
Good afternoon - we're having some issues here accessing the online documentation for the latest NumPy version: 1. Search for numpy asarray on Google 2. Top result is numpy.asarray - NumPy v1.7.dev-72185d3 Manual (DRAFT) (or just go directly to link) 3. Click link - arrive at

Re: [Numpy-discussion] subdivide array

2010-11-30 Thread Whitcomb, Mr. Tim
I have an array of data for a global grid at 1 degree resolution. It's filled with 1s and 0s, and it is just a land sea mask (not only, but as an example). I want to be able to regrid the data to higher or lower resolutions (i.e. 0.5 or 2 degrees). But if I try to use any standard interp

[Numpy-discussion] MemoryError in numpy.test() on AIX installation

2009-04-27 Thread Whitcomb, Mr. Tim
I'm trying to install NumPy 1.3.0 on an IBM Power6. I can build and install successfully, but when I try to execute the unit test suite it crashes with a MemoryError (with no additional information on the error - just the traceback). The failure occurs in test_roundtrip in

Re: [Numpy-discussion] MemoryError in numpy.test() on AIXinstallation

2009-04-27 Thread Whitcomb, Mr. Tim
-- import numpy as np from cStringIO import StringIO from numpy.lib import format f = StringIO() a = np.array([], dtype='object') format.write_array(f, a)

Re: [Numpy-discussion] MemoryError in numpy.test() on AIXinstallation

2009-04-28 Thread Whitcomb, Mr. Tim
To further complicate issues, I do not have sysadmin rights on the machine in question, and I'm not entirely confident that Python itself was built properly (I've had to sort out some other issues as well). The version in use is: Python 2.5.2 (r252:60911, Sep 17 2008, 13:24:29) [C]