How to calculate the mean from cell when each cell is a different double.
Show older comments
Hi Im reading excel files and storing them into data{k} so my data is 1x34 cell and each cell is a double, with variable column number and fixed row 13, now i want to calculate mean of 34 files for column and row 1 and do the same for the rest.I tried cell2mat but this doesnt work as i have different values for columns.
folder='E:\Engine image\E100 cycles\All Excel Files';
filetype='*.xlsx';
f=fullfile(folder,filetype);
d=dir(f);
for k=1:numel(d);
data{k}=xlsread(fullfile(folder,d(k).name));
end
Accepted Answer
More Answers (1)
Azzi Abdelmalek
on 22 Aug 2016
cellfun(@(x) mean(x,2),data,'un',0)
5 Comments
mohsen moslemin
on 22 Aug 2016
Edited: mohsen moslemin
on 22 Aug 2016
Azzi Abdelmalek
on 22 Aug 2016
Have you tested my code?
mohsen moslemin
on 22 Aug 2016
Edited: Azzi Abdelmalek
on 22 Aug 2016
Azzi Abdelmalek
on 22 Aug 2016
Edited: Azzi Abdelmalek
on 22 Aug 2016
This is not clear, to make your problem clear, you can post a short example, and also post the expected result, you haven't specified clearly what mean we have to calculate. You said also, that your matrices are not the same sizes
mohsen moslemin
on 22 Aug 2016
Categories
Find more on Spreadsheets in Help Center and File Exchange
Products
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
