Different Size of array after each loop interation

4 views (last 30 days)
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

Answers (1)

millercommamatt
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
Fabio Taccaliti
Fabio Taccaliti on 14 Dec 2022
I also don't understand why..
All the files have the same number of headers and lines of data..
Also because already at the second iteration it fails.
Voss
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.

Sign in to comment.

Categories

Find more on Data Type Identification in Help Center and File Exchange

Products


Release

R2022b

Community Treasure Hunt

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

Start Hunting!