Different Size of array after each loop interation

5 次查看(过去 30 天)
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

回答(1 个)

millercommamatt
millercommamatt 2022-12-13
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 个评论
Fabio Taccaliti
Fabio Taccaliti 2022-12-14
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 2022-12-14
@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.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Data Type Identification 的更多信息

标签

产品


版本

R2022b

Community Treasure Hunt

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

Start Hunting!

Translated by