I have a 1x8760 matrix (hours per year). I need to add up 24h and make a 1x365 or 365x1 matrix.
example: sum of values ​​1-24 in 1x1
sum of values ​​25-48 in 1x2 ..

 채택된 답변

Star Strider
Star Strider 2021년 1월 16일

1 개 추천

Try this:
M = 1:8760; % Create Vector
Mr = reshape(M, 24, []); % Reshape Vector
MeanMr = mean(Mr); % Take Column Means
.

댓글 수: 3

Nikola Ostojic
Nikola Ostojic 2021년 1월 16일
편집: Nikola Ostojic 2021년 1월 16일
Thanks, thanks, thanks!!!
I lost 3 hours with the "for" function
note: instead of mean I need sum (column summation, not average)
I resolved with "sum"
Star Strider
Star Strider 2021년 1월 16일
Sorry. I misread your Question. Replace mean with sum. They operate the same way.
Star Strider
Star Strider 2021년 1월 16일
As always,. my pleasure!

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

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Matrices and Arrays에 대해 자세히 알아보기

제품

릴리스

R2019b

질문:

2021년 1월 16일

댓글:

2021년 1월 16일

Community Treasure Hunt

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

Start Hunting!

Translated by