how can i read unformatted binary file into matlab
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
i have a fortran code which writes a binary file in the following statement
open(21,file=anum('press',itime),form=format_mode)
write(21) rtime,itime,dt,nx0,ny0,nz,deltax,deltay,rlenz
write(21) rw
close(21)
i now want to view the file in matlab, i have tried fread with a variety of options, but i cannot get the date in the format i want it. the variable is rw and represents the pressure at x,y,z. the size of the array should be 256x512x390, so essentially i want to see the data in matlab as say a x array a y array etc with the associated values.
i am really struggling to understand how i can really do this, any guidance will be extremely helpful
2 Kommentare
Walter Roberson
am 22 Jul. 2017
Bearbeitet: Walter Roberson
am 22 Jul. 2017
What was the value of format_mode ?
What are the fortran data types of rtime, itime, dt, nx0, ny0, nz, deltax, deltay, rlenz and are they scalars or arrays?
Walter Roberson
am 22 Jul. 2017
I suggest that as a test you create a 3D array with integral values but the same datatype as rw, and write it out to file, and then experiment with retrieving it. For example you could store triples 100*first_index + 10 * second_index + third_index for those from 1 3, 1 to 5, and 1 to 4, so values like 243 at rw(2,4,3) so that in the data you read you can immediately tell how to transform the data into the order needed.
Antworten (1)
Siehe auch
Kategorien
Mehr zu Fortran with MATLAB finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!