Trovo particolarmente difficile leggere file binari con Python. Puoi darmi una mano? Ho bisogno di leggere questo file, che in Fortran 90 è facilmente leggibile
int*4 n_particles, n_groups
real*4 group_id(n_particles)
read (*) n_particles, n_groups
read (*) (group_id(j),j=1,n_particles)
In dettaglio, il formato del file è:
Bytes 1-4 -- The integer 8.
Bytes 5-8 -- The number of particles, N.
Bytes 9-12 -- The number of groups.
Bytes 13-16 -- The integer 8.
Bytes 17-20 -- The integer 4*N.
Next many bytes -- The group ID numbers for all the particles.
Last 4 bytes -- The integer 4*N.
Come posso leggerlo con Python? Ho provato di tutto ma non ha mai funzionato. C'è qualche possibilità che io possa usare un programma f90 in Python, leggendo questo file binario e quindi salvare i dati che devo usare?
fromfile
funzione di Numpy rende facile leggere i file binari. Lo consiglio.