How to Read Fortran 90 Unformatted Binary Files into Matlab

조회 수: 1 (최근 30일)
Sunghan Kim
Sunghan Kim 2013년 12월 4일
답변: James Tursa 2013년 12월 4일
Is it even possible to read unformatted binary files created by fortran 90 (on Linux) into Matlab running on Windows? These binary files do not even have any extension.
Please, help me so that I can crack into the files.
-- SK
  댓글 수: 1
dpb
dpb 2013년 12월 4일
Possible, yes...but you'll have to know the record length and how the given compiler writes the internal structure to do so.
I would recommend rather than using 'UNFORMATTED' to create the files as stream files. Depending on the compiler and age thereof, the way to do this may be by using an extension ('BINARY' is one fairly common one) although it has now been standardized by later Standards and the commonly-available compilers all now support writing stream files in a Standard manner.
If you do this, fread will be all you'll need with the matching precision and endian-ness taken care of in fopen and the conversion specification.

댓글을 달려면 로그인하십시오.

답변 (1개)

James Tursa
James Tursa 2013년 12월 4일
See this thread for an example of reading Fortran unformatted binary data into MATLAB:

카테고리

Help CenterFile Exchange에서 Fortran with MATLAB에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by