Differences between revisions 3 and 4
Revision 3 as of 2009-11-09 12:31:49
Size: 1522
Editor: anonymous
Comment:
Revision 4 as of 2010-11-01 09:58:47
Size: 2245
Editor: anonymous
Comment:
Deletions are marked like this. Additions are marked like this.
Line 27: Line 27:
== Numpy ==

Numpy is the core library for multidimensional array objects (ndarray) and linear algebra. Most other scientific modules use the numpy array object. Numpy arrays and standard Python sequences have important differences:

 * Numpy arrays have a fixed size at creation, unlike Python lists
 * Numpy arrays facilitate mathematical operations on large numbers of data efficiently

The [[http://docs.scipy.org/doc/numpy/user/|User's guide]] [[http://docs.scipy.org/doc/numpy/numpy-user.pdf|PDF]] provides a good introduction.

== Scipy ==


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.



User guide and references

 * http://docs.scipy.org/doc/
 * http://docs.scipy.org/doc/numpy/user/ (start reading this user's guide) [[http://docs.scipy.org/doc/numpy/numpy-user.pdf|PDF]]
 * http://matplotlib.sourceforge.net/
Line 30: Line 54:
Line 32: Line 57:
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.

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

Numpy

Numpy is the core library for multidimensional array objects (ndarray) and linear algebra. Most other scientific modules use the numpy array object. Numpy arrays and standard Python sequences have important differences:

  • Numpy arrays have a fixed size at creation, unlike Python lists
  • Numpy arrays facilitate mathematical operations on large numbers of data efficiently

The User's guide PDF provides a good introduction.

Scipy

The scipy module uses the numpy array

functionsPylab (aka Matplotlib) uses scipy and numpy and offers high-level functions that are similar in the name and syntax to those offered by Matlab.

User guide and references

Recommended book

Importing Scipy

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)