* Committing all dirty work to CVS. We are migrating to GIT.

Beware: changes in this commit may or may not work properly.
This commit is contained in:
wirawan
2011-10-06 19:15:05 +00:00
parent 8ebf1e422e
commit 7017fdc6af
6 changed files with 326 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
# $Id: __init__.py,v 1.1 2011-07-14 19:00:59 wirawan Exp $
# $Id: __init__.py,v 1.2 2011-10-06 19:14:49 wirawan Exp $
#
# wpylib.math.linalg main module
# Created: 20110714
@@ -13,6 +13,12 @@ already provided by numpy.
"""
import numpy
import numpy.linalg
# My favorites:
from numpy import dot, trace
from numpy.linalg import det, inv
def matmul(*Mats):
"""Do successive matrix product. For example,