数字信号处理—matlab实现.docVIP

  • 5
  • 0
  • 约9.02千字
  • 约 14页
  • 2018-03-29 发布于河南
  • 举报
数字信号处理—matlab实现

题目一 : 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.响应 程序代码: w0=0.1*pi;%输入x(n)序列 n=0:299; x=sin(w0*n); subplot(3,1,1); stem(n,x,.); xlabel(n); ylabel(x(n)); a=[1 -0.97]; %求出滤波器的系数a,b (|h(z)|==1)

文档评论(0)

1亿VIP精品文档

相关文档