Cellfun to element-wise average cell vectors?

3 次查看(过去 30 天)
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}))

更多回答(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