数据平滑处理
作者:互联网
matlab可以利用smooth函数对数据进行平滑处理
%% 数据平滑处理
rng(0)
y = rand(4);
yy = smooth(y);
y1 = smooth(y,'lowess');
y2 = smooth(y,'rlowess'); % 利用rlowess方法对y进行平滑处理
y3 = smooth(y,'loess'); % 利用loess方法对y进行平滑处理
y4 = smooth(y,'sgolay',3); % 利用sgolay方法对y进行平滑处理
f1 = figure(1);
plot(yy,'r')
hold on
plot(y1,'y*')
hold on
plot(y2,'g')
hold on
plot(y3,'b')
hold on
plot(y4,'k')
legend('yy','y1','y2','y3','y4')
%% 设置噪声
% 产生500行1列的服从N(0,15^2)分布的随机数,作为噪声信号
noise = normrnd(0,15,500,1);
t = linspace(0,2 * pi,500)';
y = 100 * sin(t);
f2 = figure(2);
plot(t,y);
ynoise = y + noise;
hold on
plot(t,ynoise,':')
标签:plot,处理,平滑,smooth,y1,y3,hold,数据 来源: https://blog.csdn.net/shuitianyiwu/article/details/119898401