How to open .dat file

조회 수: 5 (최근 30일)
mohd akmal masud
mohd akmal masud 2024년 11월 5일
이동: Walter Roberson 2024년 11월 8일
Dear All,
I have .dat file as attached. I tried open using this script but an error.
Error using reshape
Number of elements must not change. Use [] as one of the size inputs to automatically calculate the appropriate
size for that dimension.
unzip xcat_wb.zip
fid = fopen('xcat_wb.dat','rb');
arr = fread(fid,'int8');
fclose(fid);
dim = [364,364,110];
arr = reshape(arr,dim)
volshow

채택된 답변

Sameer
Sameer 2024년 11월 5일
The error occured because the total number of elements is not equal to 364 * 364 * 110
unzip('xcat_wb.zip');
fid = fopen('xcat_wb.dat', 'rb');
arr = fread(fid, 'int8');
fclose(fid);
numElements = numel(arr)
numElements = 131235840
disp(364 * 364 * 110);
14574560
  댓글 수: 2
mohd akmal masud
mohd akmal masud 2024년 11월 5일
So how?
Walter Roberson
Walter Roberson 2024년 11월 5일
disp(131235840 / 14574560)
9.0044
So the actual file has a little over 8 bytes for each expected array element. That suggests that array elements are expected to be stored in double precision.
But even so, there would be parts of the file left over from [364, 364, 110] double precision elements. That suggests that either there is a substantial header (over 14 megabytes), or else that the data forms only a small portion of the file.
You need documentation as to the internal storage format of the .dat file. The file extension ".dat" is not standardized; it can refer to any random data format.

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

추가 답변 (1개)

mohd akmal masud
mohd akmal masud 2024년 11월 5일
이동: Walter Roberson 2024년 11월 8일
unzip xcat_wb.zip
fid = fopen('xcat_wb.dat','rb');
arr = fread(fid,'int8');
fclose(fid);
dim = [384,384,890];
arr = reshape(arr,dim);
volshow(arr)

카테고리

Help CenterFile Exchange에서 Image Sequences and Batch Processing에 대해 자세히 알아보기

제품


릴리스

R2023b

Community Treasure Hunt

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

Start Hunting!

Translated by