필터 지우기
필터 지우기

Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

Is any one know how to write this in MATLAB..?

조회 수: 1 (최근 30일)
nani kalyan
nani kalyan 2015년 4월 21일
마감: MATLAB Answer Bot 2021년 8월 20일
I have attached a file here, can any one tell me that how to write that formula in matlab script..?

답변 (1개)

Star Strider
Star Strider 2015년 4월 21일
편집: Star Strider 2015년 4월 21일
It’s ‘windowed mean’. This is probably the context of the equation:
x = rand(20,1);
M = 10;
for i = 1:11
y(i) = mean(x(i + [0:M-1]));
end
  댓글 수: 4
nani kalyan
nani kalyan 2015년 4월 21일
here i have attached my data, in that you can see the column of 7 and 11.... i=all values in column 7. M=length(i).
Image Analyst
Image Analyst 2015년 4월 21일
Your reply refers to your other question http://www.mathworks.com/matlabcentral/answers/210572-i-have-attached-here-the-data-which-was-getting-noise-at-output and not to this one, which is totally different.

이 질문은 마감되었습니다.

태그

아직 태그를 입력하지 않았습니다.

Community Treasure Hunt

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

Start Hunting!

Translated by