calculate mean af cell
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
fereshte
am 12 Jul. 2014
Bearbeitet: fereshte
am 13 Jul. 2014
I have a cell with 30 rows., In each row there are 39 columns. Every ten folders belong to one person. For each column I want to calculate the average value for the ten folders and give this value instead of 10 different amounts. then do it for folders from 11 to 20 and 21 to 30.
7 Kommentare
Akzeptierte Antwort
Azzi Abdelmalek
am 12 Jul. 2014
Bearbeitet: Azzi Abdelmalek
am 13 Jul. 2014
clear out
m1=reshape(1:30,10,3);
for k=1:3
m=data_matrix(m1(:,k));
f=num2cell(reshape([m{:}],39,[])',1);
out{1,k}=arrayfun(@(x) mean(cell2mat(f{x}'),2),1:39,'un',0);
end
out=repmat(out,10,1)
out=out(:)
9 Kommentare
Weitere Antworten (1)
Roger Stafford
am 12 Jul. 2014
If your "cell" is an ordinary 'double' 30 x 39 array, A, do this:
B = [mean(A(1:10,:),1);mean(A(11:20,:),1);mean(A(21:30,:),1)];
or else this:
B = reshape(mean(reshape(A,10,[]),1),3,[]);
Either method should work.
1 Kommentar
Siehe auch
Kategorien
Mehr zu Characters and Strings finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!