Filter löschen
Filter löschen

Average of data multiples excel sheets

6 Ansichten (letzte 30 Tage)
Ojo Olusola
Ojo Olusola am 5 Okt. 2021
Kommentiert: Mathieu NOE am 19 Nov. 2021
I have one excel file that contains 40 sheets with two column dataseries in each of the sheets. I need a matlab codes that can average the data for the sheet1 - sheet 10, sheets 11 - sheet 20, sheet 21-sheet30, sheet31-sheet40 separately and write the results in sheet 41, sheet 42, sheet 43 and sheet 44 respetively. Can anyone help. Thanks.
Olusola
  2 Kommentare
Mathieu NOE
Mathieu NOE am 6 Okt. 2021
hi
can you share a representative excel file ?
tx
Ojo Olusola
Ojo Olusola am 6 Okt. 2021
a = xlsread('mydata2a.xlsx')

Melden Sie sich an, um zu kommentieren.

Antworten (1)

Mathieu NOE
Mathieu NOE am 7 Okt. 2021
hello
so this is my suggestion
as we have here 10 sheets , my demo works for either groupped 2 or 5 sheets
this is driven by the parameter k , and of course it must be choosen accordingly to the number of input sheets
with k = 5 , 2 new sheets are added with the averaged data of sheets 1 to 5 and 6 to 10
with k = 2 , 5 new sheets are added with the averaged data of sheets 1 to 2 , 3 to 4 ,..., 9 to 10
code :
clc
clearvars
% Importing Data from excel across multiple sheets.
filename = 'mydata2a.xlsx';
[~,sheet_name]=xlsfinfo(filename);
nsheets = numel(sheet_name);
% retrieve raw data
for k=1:nsheets % nsheets
[data,~,~]=xlsread(filename,sheet_name{k});
% mean values per sheet
data_mean_one_sheet(k,:) = mean(data);
end
%% export
% mean of k successive sheets among nsheets (total)
k = 5;
for ck = 1:nsheets/k
ind = (1:k)+(ck-1)*k;
data_mean_k_sheets(ck,:) = mean(data_mean_one_sheet(ind,:));
xlswrite(filename,data_mean_k_sheets(ck,:),nsheets+ck);
end
  13 Kommentare
Ojo Olusola
Ojo Olusola am 5 Nov. 2021
Thank you, your answer is accepted.
Mathieu NOE
Mathieu NOE am 19 Nov. 2021
hello again
sorry , but it seems you didn't press the "accept" button ...
all the best

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Fuzzy Logic in Simulink finden Sie in Help Center und File Exchange

Tags

Produkte


Version

R2021a

Community Treasure Hunt

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

Start Hunting!

Translated by