How can I open an Oxfor Instrument Pulsar .fid file in MATLAB?

6 Ansichten (letzte 30 Tage)
I have several .fid files obtained using an Oxford Instrument Pulsar. This datafiles contain information about NMR data, and I can open them with MESTRENOVA with no problem. However, I am trying to create a full code in MATLAB that loads and treats the data, so I don't want to be dependent on external softwares.
When I upload the data into MATLAB using fread, I obtain something like this:
when I know the result should look like this:
Could anybody help me or guide me on how to open this datafiles ?
Thank you
  1 Kommentar
Star Strider
Star Strider am 19 Mär. 2023
As I advised in my Answer
Use zip or a non-MATLAB version of it to create a zip file that encloses the file you want to read, then upload it here.

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Star Strider
Star Strider am 18 Mär. 2023
Use zip or a non-MATLAB version of it to create a zip file that encloses the file you want to read, then upload it here. I have no idea what that file format is, however using readtable or a similar function and specifying 'FileType','text' might make it possible to read it in MATLAB if it is a text file.
If it is a binary file, there are options to read those as well if you know the encoding and format.
Otherwise, see if it is possible for the existing software to output a MATLAB .mat file or some format such as .xlsx that MATLAB can read easily.
  6 Kommentare
Marina Batlló RIus
Marina Batlló RIus am 1 Apr. 2023
Yeah, it is possible to do so with another software, but was trying to avoid that step because I need a full MATLAB executable that can take those. I haven't find either any information online on how to do it in MATLAB, so maybe there is no solution for those. Anyway thanks for your time!
Star Strider
Star Strider am 1 Apr. 2023
The problem is not MATLAB, only the file format. If you can save it to an Excel file or even as a regular text file, that would work. The .fid files are apparently not readable unless it is possible to recover the encoding scheme and program it in MATLAB.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (1)

Sulaymon Eshkabilov
Sulaymon Eshkabilov am 18 Mär. 2023
If it is a binary data file, then you can use fread(). See this doc how to employ fread():

Kategorien

Mehr zu Graphics Object Programming finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by