from scipy import linalg
mat = array( [[1,2],[3,4]] )
linalg.inv( mat )

####################################################

from scipy import linalg
linalg.det( mat )

####################################################

import sys
sys.path.append("/home/ludger/lib/python2.6/site-packages/")
import statistics
x = random.random( 10 )
y = random.random( 10 )
statistics.correlation( x, y )

