Filter löschen
Filter löschen

convert .dat files into .txt or .xls files

11 Ansichten (letzte 30 Tage)
Laura Paletto
Laura Paletto am 10 Jul. 2018
Kommentiert: Guillaume am 10 Jul. 2018
Hi all, I am collecting spectra from a system that outputs data as .dat file. I'd like to convert these files in .txt or .xls to plot them. I tried this
clear all
close all
filename = 'finale100.dat';
A = importdata(filename);
Npoints = A.data(1);
for ii = 1:Npoints
intensity(ii,1) = str2num(A.textdata{8+ii});
end
plot(intensity)
but it's not working. I cannot attach it as it won't let me upload the .dat file.. Any suggestions please?
  13 Kommentare
Adam
Adam am 10 Jul. 2018
Bearbeitet: Adam am 10 Jul. 2018
Just open it in any text editor (I use Notepad++, but basic Notepad would work) to see if it is binary or ascii. If it is human-readable then it is ascii. If it is full of symbols and junk it is binary. If A looks right though then again, it looks like your code on this line:
intensity(ii,1) = str2num(A.textdata{8+ii});
is not extracting the correct results from it. Why is there a hard-coded 8 in there?
Guillaume
Guillaume am 10 Jul. 2018
Just open it in any text editor
Or attach it here after renaming it. We'll tell you.

Melden Sie sich an, um zu kommentieren.

Antworten (0)

Kategorien

Mehr zu Get Started with MATLAB 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