I have a
file that was written with the following Delphi declaration ...
Type
Tfulldata = Record
dpoints, dloops : integer;
dtime, bT, sT, hI, LI : real;
tm : real;
data : array[1..armax] Of Real;
End;
...
Var:
fh:
File Of Tfulldata;
I want to analyse the data in the files (many MB in size) using Python if
…