native python matrix class (2D list), without inverse

2007-06-13 Thread DarrenWeber
# Copyright (C) 2007 Darren Lee Weber # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This p

Re: matrix class

2007-06-12 Thread DarrenWeber
On Jun 12, 6:20 pm, Dan Bishop <[EMAIL PROTECTED]> wrote: > On Jun 12, 7:31 pm, DarrenWeber <[EMAIL PROTECTED]> > wrote: > > > > > Below is a module (matrix.py) with a class to implement some basic > > matrix operations on a 2D list. Some things puzzle me ab

matrix class

2007-06-12 Thread DarrenWeber
Below is a module (matrix.py) with a class to implement some basic matrix operations on a 2D list. Some things puzzle me about the best way to do this (please don't refer to scipy, numpy and numeric because this is a personal programming exercise for me in creating an operational class in pure pyt