Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
matlab的基本问题。我有一个单元格数组(2000*1),其中每个包含一个 4*4 矩阵。如何创建 2000 个 4*4 矩阵的平均值。我认为 mean( cell arrary, 3) 会起作用,但我收到了这个错误:
???'cell' 类型的输入参数的未定义函数或方法 'sum'。
有任何想法吗?
如果您想要所有相应元素的 4x4 平均值:
>> mean( cat(3, myCell{:}), 3 )