Re: [fpc-pascal] sparse matrix storage method

2009-06-09 Thread Tom Verhoeff
On Mon, Jun 08, 2009 at 03:28:50PM -0400, Alain Michaud wrote: > >would someone know of a procedure for solving a system of linear > equations using a SPARSE MATRIX storage model. > > if one uses the usual: array [1..1;1..1] of "mostly_zeroes" then > this is a really big waist of me

Re: [fpc-pascal] sparse matrix storage method

2009-06-09 Thread Mehmet Erol Sanliturk
Alain Michaud wrote: Hi, would someone know of a procedure for solving a system of linear equations using a SPARSE MATRIX storage model. if one uses the usual: array [1..1;1..1] of "mostly_zeroes" then this is a really big waist of memory. I am thinking of using: Tlist instead,

[fpc-pascal] sparse matrix storage method

2009-06-08 Thread Alain Michaud
Hi, would someone know of a procedure for solving a system of linear equations using a SPARSE MATRIX storage model. if one uses the usual: array [1..1;1..1] of "mostly_zeroes" then this is a really big waist of memory. I am thinking of using: Tlist instead, but I would not like t