What I'm Researching...
Posted by Mike Taylor | Sunday, September 28, 2008
| Python/CDAT for Earth Scientists: Tips and Examples Posted: 28 Sep 2008 01:15 AM CDT great cookbook covering python & numpy. hat tip to the Smooth blog. Covers plotting, reversing arrays, etc. |
| Array creation — NumPy v1.2 Reference Guide (DRAFT) Posted: 28 Sep 2008 01:08 AM CDT Covers creating arrays in NumPy - covers recarrays. to create recarray: x = np.array([(1.0, 2), (3.0, 4)], dtype=[('x', float), ('y', int)]). Then to view as recarray: x = x.view(np.recarray). x.x |
| NumPy Reference Guide (DRAFT) — NumPy v1.2 Reference Guide (DRAFT) Posted: 28 Sep 2008 01:00 AM CDT great reference guide to using NumPy. |
| http://conference.scipy.org/static/wiki/demo_numpy2.py Posted: 28 Sep 2008 12:08 AM CDT example of creating structured arrays in numpy. |
| Posted: 27 Sep 2008 01:16 PM CDT a great resource for SQLite. |
Labels: links