How to open .dat file
57 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
mohd akmal masud
il 5 Nov 2024 alle 2:41
Spostato: Walter Roberson
il 8 Nov 2024 alle 4:47
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
0 Commenti
Risposta accettata
Sameer
il 5 Nov 2024 alle 2:56
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)
disp(364 * 364 * 110);
2 Commenti
Walter Roberson
il 5 Nov 2024 alle 3:58
disp(131235840 / 14574560)
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.
Più risposte (1)
mohd akmal masud
il 5 Nov 2024 alle 7:07
Spostato: Walter Roberson
il 8 Nov 2024 alle 4:47
0 Commenti
Vedere anche
Categorie
Scopri di più su Convert Image Type in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!