How to find average of each column in every matrix within a cell
1 次查看(过去 30 天)
显示 更早的评论
I have a 1x20 cell called "transmission" and I would like to find the average of each column (separately) within each matrix in the cell. Each matrix is 12000x20
0 个评论
采纳的回答
dpb
2018-6-7
mn=cellfun(@mean,c,'uniform',0); % c is the cell array
mean operates by column by default.
更多回答(0 个)
另请参阅
类别
在 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!