How can I mean multiple matrices, element by element in a n*n cell array?

조회 수: 1 (최근 30일)
Wenyi Xiao
Wenyi Xiao 2019년 4월 21일
편집: Matt J 2019년 4월 21일
WeChat Screenshot_20190421200025.png
I've got a data looks like this. size(16*6) cell array. I want to get the average of each columns, but keep the size of each matrice(650*1).

채택된 답변

Matt J
Matt J 2019년 4월 21일
편집: Matt J 2019년 4월 21일
If I call your cell array C,
M=cell2mat(reshape(C,1,16,[]));
result = mean(M,2)

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Resizing and Reshaping Matrices에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by