MATLAB smooth函数平滑处理

MATLAB smooth函数平滑处理_第1张图片
smooth(y)可得到平滑处理后的曲线序列y,并且可以迭代使用,多次使用平滑效果更加明显。

x = 0:.1:2*pi;
y = sin(x) + rand(1,length(x));
figure
plot(x,y)
hold on
for i = 1:3
    pause(1)
    y = smooth(y);
    plot(x,y)
end

你可能感兴趣的:(MATLAB,matlab,开发语言)