How to average across tables in a cell

1 visualización (últimos 30 días)
MH
MH el 20 de Ag. de 2024
Comentada: Voss el 20 de Ag. de 2024
I have a Cell containing a n number of tables (in this case 3 tables (2500x44)) and I'm trying output just one table being the average of each cell within each table across all 3 tables. This is likely a silly question but can't seem to figure it out.

Respuesta aceptada

Matt J
Matt J el 20 de Ag. de 2024
Editada: Matt J el 20 de Ag. de 2024
AvgTb=Tb{1};
AvgTb{1}{:,:}=(Tb{1}{:,:}+Tb{2}{:,:}+Tb{3}{:,:})/3;
  7 comentarios
MH
MH el 20 de Ag. de 2024
Thank you! @Voss
Voss
Voss el 20 de Ag. de 2024
You're welcome!

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Más información sobre Tables en Help Center y File Exchange.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by