NumericPython

From SourceWiki
Revision as of 12:47, 21 July 2009 by GethinWilliams (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Numeric Python: Some handy array tools

Introduction

Getting Started

From Numeric import *

Arrays

More Interesting

>>> z1 = sqrt(add.outer(arange(-5,10)**2,arange(-7,8)**2))
>>> z = sin(z1)/z1 

How to display?