필터 지우기
필터 지우기

Matrix and Averaging problems

조회 수: 2 (최근 30일)
Joydeb Saha
Joydeb Saha 2021년 4월 22일
댓글: Atsushi Ueno 2021년 4월 22일
say I have a matrix V = 180x1 double.
STEP 1 = I need to make 15 matrices, 12x1 column each ( Say Jan to Dec)
STEP 2= I need to take the average of all the Januaries .. (First row of every matrix), then Februaries (First row of every matrix)..upto Dec
STEP 3= I need to do (Jan - avg of all the Januaries)... (Dec- avg of all the Decs) for all the matrices. I will have again 15 matrices (12x1)

채택된 답변

Atsushi Ueno
Atsushi Ueno 2021년 4월 22일
V = rand(180,1);
step1 = reshape(V, [15 12]);
step2 = mean(step1);
step3 = step1 - step2;
  댓글 수: 2
Joydeb Saha
Joydeb Saha 2021년 4월 22일
step1 should be = reshape(V, [12 15])
step 2 = mean of each row of all the matrices.
step 3= first element minus avg of all the first element and so on..
please help
Atsushi Ueno
Atsushi Ueno 2021년 4월 22일
Sorry, I misunderstood about step2. Step2 shall be 1*15 right?
V = rand(180,1);
step1 = reshape(V, [12 15]);
step2 = mean(step1);
step3 = step1 - step2;

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

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by