Cellfun to element-wise average cell vectors?

조회 수: 3 (최근 30일)
Philip
Philip 2011년 2월 25일
Is there a way to use cellfun such that it computes the element-wise average of each element for all cell vectors? (all the arrays are the same size)
I can only find examples where the mean or covariance is calculated for each cell independently...
Thanks!

채택된 답변

Walter Roberson
Walter Roberson 2011년 2월 25일
Yes, if you use a function with a persistent variable.
It would, however, be much easier to use:
reshape( mean( reshape(cat(1 + ndims(TheCell{1}), TheCell{:}), [], numel(TheCell)), 2), size(TheCell{1}))
  댓글 수: 1
Philip
Philip 2011년 2월 27일
That's perfect - thanks so much for your help!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by