Borrar filtros
Borrar filtros

How can I mean multiple matrices, element by element in a n*n cell array?

1 visualización (últimos 30 días)
WeChat Screenshot_20190421200025.png
I've got a data looks like this. size(16*6) cell array. I want to get the average of each columns, but keep the size of each matrice(650*1).

Respuesta aceptada

Matt J
Matt J el 21 de Abr. de 2019
Editada: Matt J el 21 de Abr. de 2019
If I call your cell array C,
M=cell2mat(reshape(C,1,16,[]));
result = mean(M,2)

Más respuestas (0)

Categorías

Más información sobre Creating and Concatenating Matrices en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by