Re: [Lazarus] storing big dynamic matrices in file ?

2023-08-27 Thread R.Smith via lazarus
On 2023/08/27 21:46, Etienne Leblois via lazarus wrote: Dear all, I want to manipulate, store, later retrieve, 2-dimensions matrices of single or double ; matrices may turn big and I wanted to turn to dynamic array of array the basic solution below works, but storing (and retrieval) of big

Re: [Lazarus] storing big dynamic matrices in file ?

2023-08-27 Thread DougC via lazarus
Look at procedures BlockWrite and BlockRead for faster way to write/read large quantities of data. Doug C.-- ___ lazarus mailing list lazarus@lists.lazarus-ide.org https://lists.lazarus-ide.org/listinfo/lazarus

[Lazarus] storing big dynamic matrices in file ?

2023-08-27 Thread Etienne Leblois via lazarus
Dear all, I want to manipulate, store, later retrieve, 2-dimensions matrices of single or double ; matrices may turn big and I wanted to turn to dynamic array of array the basic solution below works, but storing (and retrieval) of big matrices is VERY slow. any hint on the good way to