Difference between revisions of "NumericPython"

From SourceWiki
Jump to navigation Jump to search
 
m (Protected "NumericPython" [edit=sysop:move=sysop])
(No difference)

Revision as of 12:47, 21 July 2009

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?