How to find mean of cell array
조회 수: 4 (최근 30일)
이전 댓글 표시
I have an cell array (h) of 4X1. Inside the cell I have 4 matrices each of size 234X64X8. How to find mean of each matrix using mean(h,3)
댓글 수: 1
Image Analyst
2023년 3월 27일
The mean of a 3-D matrix along dimension 3 would be a 234X64 matrix. So for each of the cells in the 4 element cell array, you say you have 4 of those matrixes, for a total of 16 2-D matrices.
How do you have 4 matrices inside each cell? You can have only one matrix, unless each cell contains a 4 element cell array. So let's say you did, then for each of the cell array's 4 cells you would have 4 matrices (since each of the cells in the cell array somehow contains 4 3-D matrices). This would give a grand total of 16 234x64 matrices. Is that right? What do you want as the output to be?
If you want any more help, say what you want as the output, and attach your cell array in a .mat file with the paperclip icon. But after you read this:
답변 (1개)
the cyclist
2023년 3월 27일
Here is one way:
cellfun(@(x)mean(x,3),h,'UniformOutput',false)
댓글 수: 1
the cyclist
2023년 3월 27일
My solution assumes that you have one 3-dimensional array in each of your 4 cell elements. (That was how I interpreted your remark that you have 4 matrices.)
참고 항목
카테고리
Help Center 및 File Exchange에서 Cell Arrays에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!