使用MATLAB对x=sin(2*pi*1*t)+sin(2*pi*10*t)进行低通滤波
上面只是举了一个简单例子,但我试了各种方法始终无法得出满意的结果,还请大神把详细的语句写出来。...
上面只是举了一个简单例子,但我试了各种方法始终无法得出满意的结果,还请大神把详细的语句写出来。
展开
- 你的回答被采纳后将获得:
- 系统奖励15(财富值+成长值)+难题奖励10(财富值+成长值)+提问者悬赏5(财富值+成长值)
1个回答
展开全部
利用小波变换。
clear all;
t=0:1:100;
y=sin(2*pi*1*t)+sin(2*pi*10*t);
figure (1);
plot(y);
[d,a]=wavedec(y,3,'db5');
subplot(211);plot(a);
subplot(212);plot(d);
a3=wrcoef('a',d,a,'db5',3);
d3=wrcoef('d',d,a,'db5',3);
d2=wrcoef('d',d,a,'db5',2);
d1=wrcoef('d',d,a,'db5',1);
figure (3);
subplot(411);plot(a3);
subplot(412);plot(d3);
subplot(413);plot(d2);
subplot(414);plot(d1);
clear all;
t=0:1:100;
y=sin(2*pi*1*t)+sin(2*pi*10*t);
figure (1);
plot(y);
[d,a]=wavedec(y,3,'db5');
subplot(211);plot(a);
subplot(212);plot(d);
a3=wrcoef('a',d,a,'db5',3);
d3=wrcoef('d',d,a,'db5',3);
d2=wrcoef('d',d,a,'db5',2);
d1=wrcoef('d',d,a,'db5',1);
figure (3);
subplot(411);plot(a3);
subplot(412);plot(d3);
subplot(413);plot(d2);
subplot(414);plot(d1);
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询