Pythonでのバイナリファイルの読み取りは特に難しいと思います。手伝って頂けますか?このファイルを読む必要があります。このファイルはFortran 90では簡単に読むことができます。
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)
詳細には、ファイル形式は次のとおりです。
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.
これをPythonでどのように読むことができますか?私はすべてを試しましたが、うまくいきませんでした。Pythonでf90プログラムを使用して、このバイナリファイルを読み取り、使用する必要のあるデータを保存する可能性はありますか?
fromfile
関数を使用すると、バイナリファイルを簡単に読み取ることができます。私はそれをお勧めします。