- create exxall as an empty array. You currently create an unused variable, uall
- You csv files do not all have the same length, so you will get an error when trying to concatenate them. Create exxall as the mean of x.exx to get around this.
finding the average from csv file
조회 수: 12 (최근 30일)
이전 댓글 표시
Hi,
I have several csv file and each file has several columns with the name of ''x'', "y", "u", "v", "exx" like that. I want to read exx from each csv file and find the average of each. For example if I have 10 csv file then I will have 10 columns of exx so I want to find the average of ecah exx column so that at the end I will have 10 values of exx. Now I want to plot the average.
I am doing something like this but it shows concatanation error. can you please help me to figure out.
Folder='G:\Image\';
mat = dir(fullfile(Folder, '*.csv'));
% disp(mat)
% for files_i = 1:length(mat)
% disp(mat(files_i).name)
% data = fullfile(Folder,mat(files_i).name);
% ReadCSV(data,files_i);
%
% end
uall = [];
for files_i = 1:length(mat)
data = fullfile(Folder,mat(files_i).name);
x = readtable(data);
exxall =[exxall x.exx];
end
Any help will be appriciated!
댓글 수: 0
채택된 답변
Cris LaPierre
2023년 1월 10일
There are some mistakes with your code, but the core elements are all there.
Folder='./';
mat = dir(fullfile(Folder, '*.csv'));
exxall = [];
for files_i = 1:length(mat)
data = fullfile(mat(files_i).folder,mat(files_i).name);
x = readtable(data);
exxall =[exxall mean(x.exx)];
end
exxall
댓글 수: 8
Cris LaPierre
2023년 1월 12일
That is one approach. Here's another.that doesn't require predetermining the number of rows to use. By specifying the rows to assign to, it automatically increases the size of the array. When it does this, it adds NaN to the other columns.
NaNs can have an impact when taking a mean, so be sure to set the nanflag property of mean to either include or omit nans in the calculation.
mat = dir('*.csv');
uall = [];
xall = [];
for files_i = 1:length(mat)
X = readtable(mat(files_i).name);
uall(1:height(X)-1,files_i) = diff(X.u);
xall(1:height(X)-1,files_i) = diff(X.x);
end
A = uall./xall;
% Inspect the first 5 rows
A(1:5,:)
% Inspect the lasst 5 rows
A(end-4:end,:)
추가 답변 (0개)
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!