Help on opening a .fid file
Mostrar comentarios más antiguos
Hello, I am trying to open a .fid file in MATLAB. I do not have any other extra file or information, just the different .fid. The result should look like this:

I upload some example files. I have tried using fread, but I cannot manage to obtain the results.
Thanks in advance
3 comentarios
Walter Roberson
el 12 de Abr. de 2023
Editada: Walter Roberson
el 12 de Abr. de 2023
See previous discussion at https://www.mathworks.com/matlabcentral/answers/1931090-how-can-i-open-an-oxfor-instrument-pulsar-fid-file-in-matlab
These are Oxford Instrument Pulsar files.
Marina Batlló RIus
el 12 de Abr. de 2023
Leandro
el 22 de Oct. de 2024
Editada: Walter Roberson
el 22 de Oct. de 2024
Respuestas (3)
Abhishek
el 12 de Abr. de 2023
Hi Marina,
To read the file, it is recommended to open it using the function fopen. Once you have opened the file, you can read its contents using fread. Please refer to the following code snippet:
%Unzip the file
unzip('avg8.zip')
%Open the file for reading
myFidFile = fopen('avg7.fid');
%Read the file
fidData = fread(myFidFile);
%Plot
figure('Name','FID Data Plot')
plot(fidData)
%Close the file
fclose(myFidFile);
Here's what the resultant plot looks like:
For further information on file operations, please refer to the following documentation pages:
1 comentario
Marina Batlló RIus
el 12 de Abr. de 2023
Walter Roberson
el 12 de Abr. de 2023
1 voto
There is no possible code that can read an arbitrary binary file and reliably extract the intended data. There is no international standard that requires that binary files must be in some structured form that self-describes what the data type and size of each section of data is.
For example if there are two binary bytes in the file, 10000000 10000001 then there is absolutely no way to tell whether the intent is 128 129, or 33152 or 32897 or -32384 or -32639 or an encoding for a character in LINEAR B, or a Start Of Record indicator followed by a record length of 129, or is intended to indicate "Mammal" "Aardvark", or something else completely different than any of these.
In order to decode an arbitrary binary file, you need documentation about the internal representation. Or you need access to the encoding program and the patience to do a lot of tests if writing out data in the program and seeing how it gets stored in the file.
So, you cannot expect us to be able to read and decode the file without information about what kind of file it is, and documentation from the manufacturer about how they store data.
Leandro
el 22 de Oct. de 2024
0 votos
Categorías
Más información sobre Low-Level File I/O en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!