arrange columns side by side using matlab
Afficher commentaires plus anciens
Hii experts, i have 5000 .txt file in a directory that contains single column data. i want to arrange them side by side seqentially to make a mxn matrix file.
My files serial number starts from 1.txt 2.txt.....5000.txt
I tried from here https://in.mathworks.com/matlabcentral/answers/260839-how-to-place-multiple-csv-files-along-coloum-side-by-side-in-a-single-file but not get success.Please suggest a better solution.Thanks.
2 commentaires
Scott MacKenzie
le 3 Juil 2021
Are the data numeric? Is the number of values the same in each file?
Seismic D
le 3 Juil 2021
Réponses (1)
Scott MacKenzie
le 3 Juil 2021
Modifié(e) : Scott MacKenzie
le 3 Juil 2021
n = 5000; % number of files to read
basefilename = 'temp'; % change as necessary
M = []; % preallocate if you know the number of values in each file
for i=1:n
f = [basefilename num2str(i) '.txt'];
if isfile(f) % verify file exists (as a precaution)
M(:,i) = readmatrix(f);
end
end
1 commentaire
Seismic D
le 3 Juil 2021
Catégories
En savoir plus sur Simscape Electrical dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!