필터 지우기
필터 지우기

How to Find average value for every 10 sets of a matrix

조회 수: 2 (최근 30일)
Magdy Ismail
Magdy Ismail 2021년 1월 15일
댓글: Mischa Kim 2021년 1월 15일
I have a one dimensional array A of 1000 elements.
How do I calculate the mean of elements for the first 10 sets ,then the second sets, and third sets so on until 1000

채택된 답변

Mischa Kim
Mischa Kim 2021년 1월 15일
Hi Magdy, you could use something like:
x = 1:1:12; % this would be your matrix A
y = reshape(x,3,4)
m = mean(y,1)
  댓글 수: 2
Magdy Ismail
Magdy Ismail 2021년 1월 15일
Thank you so much so for an example if i have like 1000 numbers
the code should be like this
x = 1:1:1000; % this would be your matrix A
y = reshape(x,10,100 )
m = mean(y,1)
Right? this will give me the average for each 10 sets?

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Correlation and Convolution에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by