필터 지우기
필터 지우기

Compute the mean row cell elements in a cell array.

조회 수: 3 (최근 30일)
ET
ET 2021년 12월 9일
댓글: ET 2021년 12월 9일
Hello,
I have a 3x11 cell array. Each cell contains a 128 x 1000 element.
I would like to compute the mean of the all the rows but leaving the columns alone, so that the results will be a 1 x 11 cell array with each element = 128x1000. Please help. Thanks
Eric

채택된 답변

Stephen23
Stephen23 2021년 12월 9일
Where C is your cell array:
fun = @(varargin)mean(cat(3,varargin{:}),3);
D = cellfun(fun,C(1,:),C(2,:),C(3,:),'uni',0)

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by