- 1、本文档共47页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 5、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 6、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 7、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 8、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
请仔细填写文档简介。如果是PDF扫描型文档则更应该简介,将增加至少百分之六十的访问量。
实验报告
题目一 : A sinusoid of frequency ω0=0.1πand duration of 300 samples, that is ,0≤n300, is input to a (causal) filter with transfer function ,where a=0.97。Adjust the scale factor b such that the filter’s gain at ω0 is unity。 Determine and plot the input x(n) and the output y(n) of the filter over the interval 0≤n450, by iterating the difference equation of the filter. At the same time, plot the filter’s magnitude response.
实验目的
给定一个系统的传输函数,输入一个正弦序列,经过系统的传输函数后求其差分方程,同时考虑零点,极点对幅频特性曲线的影响。
实验原理
一般时域离散系统或网络可以用差分方程,单位脉冲响应以及系统函数进行描述。
实验步骤简述
求系数b的值,利用其模值求出b的值。求出其差分方程y(n),利用滤波函数将其传输函数进行逆变换。求出传输函数的幅频特性曲线,画出输入正弦函数的图形,画出差分方程的图形
实验程序框图
实验源程序
当a=0.97时
close all;
clear all;
clc
tic
a1=0.97;
w=0.1*pi;
b=abs(1-a1*exp(-j*w));
N=300;
n=1:N;
xn=sin(w*n);
x1=[xn zeros(1,150)];
a=[1 -a1];
yn=filter(b,a,x1);
figure(name,实验一,color,r);
subplot(211);
plot(xn);
title( x(n));
xlabel(n);
ylabel(幅度);
t1=toc
subplot(212);
plot(yn);
title( y(n));
xlabel(n);
ylabel(幅度);
figure(name,实验一,color,r);
freqz(b,a);
pause
close all;
6.实验结果
当a=0.35时
close all;
clear all;
clc
tic
a1=0.35;
w=0.1*pi;
b=abs(1-a1*exp(-j*w));
N=300;
n=1:N;
xn=sin(w*n);
x1=[xn zeros(1,150)];
a=[1 -a1];
yn=filter(b,a,x1);
figure(name,实验一,color,r);
subplot(211);
plot(xn);
title( x(n));
xlabel(n);
ylabel(幅度);
t1=toc
subplot(212);
plot(yn);
title( y(n));
xlabel(n);
ylabel(幅度);
figure(name,实验一,color,r);
freqz(b,a);
pause
close all;
实验结果
]
7. 实验总结:
当a值变小后,它的相频响应的曲线会变的平缓
题目 (二)
一:实验题目:
It is desired to extract signal x(n)=s(n)+v(n)=s+v(n),where v(n) is zero-mean white Caussian noise of variance б.(1)First-order IIR smoother; To this end,the following IIR lowpass filter is used:H(Z)=b/(1-az-1),where the parameter a is restrict to the range 0a1.This can be achieve in two ways.(2) FIR averaging filters:Consider ,for example,the third-order filter H(Z)=h0+h1z-1+h2z-2+h3z-3.(提示:当四个系数相等时,其噪声抑制效果最佳。)
二:实验目的:
让确定信号分别通过有限长脉冲响应(FIR)数字滤波器和无限长脉冲响应(IIR)数字滤波器,通过分析输出图像,掌握滤波器各参数对性能的影响。
三:实验原理:
确定信号为一个常数与高斯白噪声相加。通过滤波器,对于
文档评论(0)