Differences between revisions 2 and 3
Revision 2 as of 2009-11-02 12:47:40
Size: 1027
Editor: anonymous
Comment:
Revision 3 as of 2009-11-09 12:31:49
Size: 1522
Editor: anonymous
Comment:
Deletions are marked like this. Additions are marked like this.
Line 30: Line 30:
== Importing Scipy ==

Numpy is the core library for multidimensional array objects and linear algebra. The scipy module uses the numpy array functions. [[http://matplotlib.sourceforge.net/|Pylab (aka Matplotlib)]] uses scipy and numpy and offers high-level functions that are similar in the name and syntax to those offered by Matlab.

The statement
{{{
from pylab import *
}}}
imports the most important functions/objects for numerical computation and plotting.
Line 32: Line 42:
 * http://heim.ifi.uio.no/~hpl/scripting/all-nosplit/index.html  * http://heim.ifi.uio.no/~hpl/scripting/all-nosplit/index.html (some are outdated)

Python modules

There a several modules which are already included in the standard Python distribution:

Other modules have to be installed seperately, e.g. Numpy, Scipy, Pylab, etc.

Over 8000 special purpose modules and scripts can be found in the Python Package Index:

It is important to know where to find the functions that you need. We will go through some useful examples.

Numpy, Scipy and Pylab

Recommended book

Importing Scipy

Numpy is the core library for multidimensional array objects and linear algebra. The scipy module uses the numpy array functions. Pylab (aka Matplotlib) uses scipy and numpy and offers high-level functions that are similar in the name and syntax to those offered by Matlab.

The statement

from pylab import *

imports the most important functions/objects for numerical computation and plotting.

Slides for teaching

LehreWiki: OpenSource2010/Lesson3 (last edited 2010-11-01 14:03:52 by anonymous)