On Sun, 2004-01-25 at 14:15, CHAPMAN, RICHARD wrote:
> hi
>
> is there already a function in python to solve a set of linear
> equations when in the form
>
> | 3 4 5 6 |
> | 2 7 2 1 |
> | 6 9 1 2 |
>
> Assuming matrix is consistent and the fourth column is your result and
> it puts it in the form
>
> | 1 0 0 ? |
> | 0 1 0 ? |
> | 0 0 1 ? |
>
> where ? are the results? or a function similar to.
>
> thanks rich
Numeric has a linear algebra subpackage[1], but I don't have any
experience with it.
HTH,
Jonathan Brandmeyer
[1] http://www.pfdubois.com/numpy/html2/numpy-18.html#pgfId-303015
|