fopen for multiple binary files
조회 수: 1 (최근 30일)
이전 댓글 표시
I have to read Binary files in matlab , I have used following codes to open file
file='D:\.....cmorph\CMORPH_V1.0_ADJ_0.25deg-DLY_00Z_20090620';
a=fopen(file);
b=fread(a,'float');
day1=reshape(b,1440,480);
It works and I have output of day1 is matrix 1440x480x1.
Now I want to open and read all binary file of folder (365 files) to create the matrix of all days (1440x480x365).
How can I do that?
댓글 수: 5
Walter Roberson
2019년 6월 17일
projectdir = 'D:\.....cmorph';
myfilename = fullfile(projectdir, sprintf('cm2001%04d', k))
답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!