Calculating mean values of a 3D matrix for every rows

조회 수: 4 (최근 30일)
Joydeb Saha
Joydeb Saha 2022년 3월 30일
댓글: Joydeb Saha 2022년 4월 6일
I have a matrix 12x441x1440. 12 is the dimension of time. how can I get 12 average numbers for every month from that matrix

채택된 답변

Simon Chan
Simon Chan 2022년 3월 30일
Try this:
mean(yourmatrix,[2 3]);
  댓글 수: 4
Bruno Luong
Bruno Luong 2022년 3월 30일
Look like you have old MATLAB version
mean(mean(yourmatrix,2),3);
Joydeb Saha
Joydeb Saha 2022년 4월 6일
thanks Bruno

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Resizing and Reshaping Matrices에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by