ฉันพบว่าไฟล์ไบนารีที่อ่านยากโดยเฉพาะด้วย 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 ได้อย่างไร ฉันลองทุกอย่างแล้วแต่มันไม่ได้ผล มีโอกาสไหมที่ฉันจะใช้โปรแกรม f90 ใน python อ่านไฟล์ไบนารีนี้แล้วบันทึกข้อมูลที่ฉันต้องใช้
fromfile
ฟังก์ชันของ Numpy ช่วยให้อ่านไฟล์ไบนารีได้ง่าย ผมแนะนำเลย