Calculating a mean matrix of a cell array
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
CSCh
el 10 de Jul. de 2023
Comentada: CSCh
el 10 de Jul. de 2023
Hi,
I have a A=78757x1 cell, consiting of {125×15 double} matrices.
How can I calculate the mean of all (78757) matrixes, ( "element-by-element" for each matrix) so that I have a mean Matrix of 125*15 at the end. A contains also sometimes NaN entries.
Thanks,
Chris
0 comentarios
Respuesta aceptada
Más respuestas (1)
Paul
el 10 de Jul. de 2023
Try
mean(cat(3,A{:}),3,'omitnan')
The omitnan flag will ignor the nan entries in the computation of the mean.
Ver también
Categorías
Más información sobre Creating and Concatenating Matrices en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!