Importing dat files as a double matrix

I am new in matlab, and I got data stored as dat files and I need to import them as a double matrix
Thanks in advance
Mohamed

3 Kommentare

Voss
Voss am 4 Dez. 2023
That the file has a .dat extension doesn't say anything about the format of the data it contains. Please upload one of the files (using the paperclip button), so we can see what's what.
Mario
Mario am 4 Dez. 2023
I tried to upload one of the files, but the website site refused as they don't support Dat files. I got a set of dat files and they were generated from another Matlab function. each file contains 4 columns (X,Y,U,V)
Voss
Voss am 4 Dez. 2023
You can zip the dat file(s) and upload the zip file.

Melden Sie sich an, um zu kommentieren.

Antworten (1)

KALYAN ACHARJYA
KALYAN ACHARJYA am 4 Dez. 2023
Bearbeitet: KALYAN ACHARJYA am 4 Dez. 2023

0 Stimmen

Example
#Edited (Pls Check Comments)
data = readmatrix('yourfile.dat');
data = double(importdata('yourfile.dat'));

6 Kommentare

Stephen23
Stephen23 am 4 Dez. 2023
Avoid LOAD for text data.
Avoid IMPORTDATA for text data.
Recommended: READMATRIX, READTABLE, etc.
Mario
Mario am 4 Dez. 2023
I tried the below command
Vec00001 = readtable("C:\Users\Desktop\results\Post\Vec00001.dat", opts);
but how read the whole set of dat files? I got 1500 dat files and I need to import them all
Dyuman Joshi
Dyuman Joshi am 4 Dez. 2023
If readtable() works for you, then see the 2nd method using dir() - https://in.mathworks.com/help/matlab/import_export/process-a-sequence-of-files.html
KALYAN ACHARJYA
KALYAN ACHARJYA am 4 Dez. 2023
Yes, thank you all....I missed it.
Mario
Mario am 5 Dez. 2023
I used the below command and it read the dat files as a table (1x1500 cell) and each cell include (65536x4 table)
for k = 1:1500
myfilename = sprintf('Vec%05d.dat', k);
mydata{k} = readtable(myfilename);
end
then I tried to convert the table to matrix, but it doesn't work, could you please correct it to me?
for k = 1:1500
mydata1(:,:,k)= table2array(mydata{:,k})
end
P = 'absolute or relative path to where the files are saved';
N = 1500;
C = cell(1,N);
for k = 1:N
F = sprintf('Vec%05d.dat',k);
C{k} = readmatrix(fullfile(P,F));
end
A = cat(3,C{:});

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu MATLAB finden Sie in Hilfe-Center und File Exchange

Produkte

Tags

Gefragt:

am 4 Dez. 2023

Kommentiert:

am 7 Dez. 2023

Community Treasure Hunt

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

Start Hunting!

Translated by