필터 지우기
필터 지우기

How do I write a function that performs moving average using data from a text file? The equation I have to use is mentioned in the body and i do not understand what function to create.

조회 수: 2 (최근 30일)
Write a function that performs the moving average, equation (2), of any 1- dimensional input data for any non-zero and positive order M. Be sure to add M −1 zeros at the beginning of the data so that your output data will be the same length as your input data.
y[n] = 1/M Σx[n − k]
lower limit k= 0 upper limit M −1

채택된 답변

Walter Roberson
Walter Roberson 2015년 10월 18일
conv(x, ones(1,M)) ./ M

추가 답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by