Different Size of array after each loop interation
3 views (last 30 days)
Show older comments
I have 63 .txt file with 26 headers lines and then 19 columns of float data. I would like to read all the files and store (in row) the first 6 columns of the .txt files (x,y,z,u,v,w). Then for each .txt file I would like to append these data in a new row.
This is the code that I did but after the first j (j=1) then the script crash because the sizes of the arrays are not the same, indeed for some reasons during the first iteration it is skipping not 26 but 52 lines (so also the first 26 of numbers that I want), while in the second is (in a correct way skiiping only 26 headers line).
inpDir = "\\ftac\Folder\CD";
files = dir(fullfile(inpDir, '*.txt'));
n_file = size(files,1);
for j=1:n_file
fid = fopen(files(j).name, 'r');
data = textscan(fid, '%f %f %f %f %f %f %f %f %f %f %f %f %f %f %f %f %f %f %f', 'HeaderLines', 26, 'Delimiter',' ');
fclose(fid);
x(j, :) = data{1}'; % x coordinate
y(j, :) = data{2}'; % y coordinate
z(j, :) = data{3}'; % y coordinate
u(j, :) = data{4}';% u velocity
v(j, :) = data{5}'; % v velocity
w(j, :) = data{6}'; % w velocity
end
How can I solve this issue? Thanks in advance
0 Comments
Answers (1)
millercommamatt
on 13 Dec 2022
If you want the data from each file to be on their own row, you'll need to use something like a cell array or a structure since the files are not the same length.
I'm not sure why you're getting the incorrect number of header line skipped. You syntax for that is correct. Maybe check the line endings in the source files.
2 Comments
Voss
on 14 Dec 2022
@Fabio Taccaliti: I guess you better upload some of the files here (use the button with the paperclip icon), so that people can try to figure out what's going on.
See Also
Categories
Find more on Whos in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!