Info
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
Is any one know how to write this in MATLAB..?
조회 수: 1 (최근 30일)
이전 댓글 표시
I have attached a file here, can any one tell me that how to write that formula in matlab script..?
댓글 수: 0
답변 (1개)
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
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!