calculate mean af cell
古いコメントを表示
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 件のコメント
Azzi Abdelmalek
2014 年 7 月 12 日
What do you mean by every ten folders?
fereshte
2014 年 7 月 12 日
Azzi Abdelmalek
2014 年 7 月 12 日
What do you mean by folder?
Image Analyst
2014 年 7 月 12 日
By "folder" do you mean "row"????
fereshte
2014 年 7 月 13 日
Azzi Abdelmalek
2014 年 7 月 13 日
編集済み: Azzi Abdelmalek
2014 年 7 月 13 日
Each 10 rows from what?
fereshte
2014 年 7 月 13 日
採用された回答
その他の回答 (1 件)
Roger Stafford
2014 年 7 月 12 日
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 件のコメント
カテゴリ
ヘルプ センター および File Exchange で Number Theory についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!