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!