How to average across tables in a cell

조회 수: 2 (최근 30일)
MH
MH 2024년 8월 20일
댓글: Voss 2024년 8월 20일
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.

채택된 답변

Matt J
Matt J 2024년 8월 20일
편집: Matt J 2024년 8월 20일
AvgTb=Tb{1};
AvgTb{1}{:,:}=(Tb{1}{:,:}+Tb{2}{:,:}+Tb{3}{:,:})/3;
  댓글 수: 7
MH
MH 2024년 8월 20일
Thank you! @Voss
Voss
Voss 2024년 8월 20일
You're welcome!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Tables에 대해 자세히 알아보기

제품

Community Treasure Hunt

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

Start Hunting!

Translated by