代码:

%% ------------------------------------------------------------------------
%% Output Info about this m-file
fprintf('\n***********************************************************\n');
fprintf(' <DSP using MATLAB> Problem 3.18 \n\n'); banner();
%% ------------------------------------------------------------------------ %% -------------------------------------------------------------------
%% y(n)=x(n)+x(n-2)+x(n-4)+x(n-6)
%% -0.81y(n-2)-0.81*0.81y(n-4)-0.81^3*y(n-6)
%% -------------------------------------------------------------------
a = [1, 0, 0.81, 0, 0.81^2, 0, 0.81^3]; % filter coefficient array a
b = [1, 0, 1, 0, 1, 0, 1]; % filter coefficient array b MM = 500; [H, w] = freqresp1(b, a, MM); magH = abs(H); angH = angle(H); realH = real(H); imagH = imag(H); %% --------------------------------------------------------------------
%% START H's mag ang real imag
%% --------------------------------------------------------------------
figure('NumberTitle', 'off', 'Name', 'Problem 3.18 H1');
set(gcf,'Color','white');
subplot(2,1,1); plot(w/pi,magH); grid on; %axis([-1,1,0,1.05]);
title('Magnitude Response');
xlabel('frequency in \pi units'); ylabel('Magnitude |H|');
subplot(2,1,2); plot(w/pi, angH/pi); grid on; axis([-1,1,-1.05,1.05]);
title('Phase Response');
xlabel('frequency in \pi units'); ylabel('Radians/\pi'); figure('NumberTitle', 'off', 'Name', 'Problem 3.18 H1');
set(gcf,'Color','white');
subplot(2,1,1); plot(w/pi, realH); grid on;
title('Real Part');
xlabel('frequency in \pi units'); ylabel('Real');
subplot(2,1,2); plot(w/pi, imagH); grid on;
title('Imaginary Part');
xlabel('frequency in \pi units'); ylabel('Imaginary');
%% -------------------------------------------------------------------
%% END X's mag ang real imag
%% ------------------------------------------------------------------- %% --------------------------------------------------
%% x1(n)=5+10*(-1)^n
%% --------------------------------------------------
M = 200;
n1 = [0:M];
x1 = 5 + 10*(-1).^n1; y1 = filter(b, a, x1); figure('NumberTitle', 'off', 'Name', sprintf('Problem 3.18.1 M = %d',M));
set(gcf,'Color','white');
subplot(2,1,1);
stem(n1, x1);
xlabel('n'); ylabel('x1');
title(sprintf('x1(n) input sequence, M = %d', M)); grid on;
subplot(2,1,2);
stem(n1, y1);
xlabel('n'); ylabel('y1');
title(sprintf('y1(n) output sequence, M = %d', M)); grid on; %% --------------------------------------------------
%% x2(n)=1+cos(0.5pin+pi/2)
%% -------------------------------------------------- n2 = n1;
x2 = 1 + cos(0.5*pi*n2+pi/2); y2 = filter(b, a, x2); figure('NumberTitle', 'off', 'Name', sprintf('Problem 3.18.2 M = %d',M));
set(gcf,'Color','white');
subplot(2,1,1);
stem(n2, x2);
xlabel('n'); ylabel('x');
title(sprintf('x2(n) input sequence, M = %d', M)); grid on;
subplot(2,1,2);
stem(n2, y2);
xlabel('n'); ylabel('y');
title(sprintf('y2(n) output sequence, M = %d', M)); grid on; %% --------------------------------------------------
%% x3(n)=2sin(pin/4) + 3cos(3pin/4)
%% -------------------------------------------------- n3 = n1;
x3 = 2*sin(pi*n3/4) + 3*cos(3*pi*n3/2); y3 = filter(b, a, x3); figure('NumberTitle', 'off', 'Name', sprintf('Problem 3.18.3 M = %d',M));
set(gcf,'Color','white');
subplot(2,1,1);
stem(n3, x3);
xlabel('n'); ylabel('x');
title(sprintf('x3(n) input sequence, M = %d', M)); grid on;
subplot(2,1,2);
stem(n3, y3);
xlabel('n'); ylabel('y');
title(sprintf('y3(n) output sequence, M = %d', M)); grid on; %% ------------------------------------------------------------------------------
%% x4(n)=1+2cos(pin/4)+3cos(2pin/4)+4cos(3pin/4)+5cos(4pin/4)+6cos(5pin/4)
%% ------------------------------------------------------------------------------ n4 = n1;
sum = 0;
for i = 0:5
sum = sum + (i+1)*cos(i*pi*n4/4);
end
x4 = sum; y4 = filter(b, a, x4); figure('NumberTitle', 'off', 'Name', sprintf('Problem 3.18.4 M = %d',M));
set(gcf,'Color','white');
subplot(2,1,1);
stem(n4, x4);
xlabel('n'); ylabel('x');
title(sprintf('x4(n) input sequence, M = %d', M)); grid on;
subplot(2,1,2);
stem(n4, y4);
xlabel('n'); ylabel('y');
title(sprintf('y4(n) output sequence, M = %d', M)); grid on; %% -----------------------------------------------------------------
%% x5(n)=cos(pin)
%% ----------------------------------------------------------------- n5 = n1; x5 = cos(pi*n5); y5 = filter(b, a, x5); figure('NumberTitle', 'off', 'Name', sprintf('Problem 3.18.5 M = %d',M));
set(gcf,'Color','white');
subplot(2,1,1);
stem(n5, x5);
xlabel('n'); ylabel('x');
title(sprintf('x5(n) input sequence, M = %d', M)); grid on;
subplot(2,1,2);
stem(n5, y5);
xlabel('n'); ylabel('y');
title(sprintf('y5(n) output sequence, M = %d', M)); grid on; %% -----------------------------------------------------------------
%% x0(n)=Acos(w0n+theta)
%% -----------------------------------------------------------------
A = 3;
w0 = 0.2*pi;
theta = 0; n0 = n1; x0 = A * cos(w0*n0+theta); yss = filter(b, a, x0);
figure('NumberTitle', 'off', 'Name', sprintf('Problem 3.18.6 M = %d',M));
set(gcf,'Color','white');
subplot(2,1,1);
stem(n0, x0);
xlabel('n'); ylabel('x');
title(sprintf('x0(n) input sequence, M = %d', M)); grid on;
subplot(2,1,2);
stem(n0, yss);
xlabel('n'); ylabel('y');
title(sprintf('yss(n) output sequence, M = %d', M)); grid on;

  运行结果:

1、LTI系统的频率响应

第1小题:

第2小题:

第3小题:

第4小题:

第5小题:

《DSP using MATLAB》Problem 3.18的更多相关文章

  1. 《DSP using MATLAB》Problem 6.18

    代码: %% ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ %% Output In ...

  2. 《DSP using MATLAB》Problem 5.18

    代码: %% ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ %% O ...

  3. 《DSP using MATLAB》Problem 4.18

    代码: %% ------------------------------------------------------------------------ %% Output Info about ...

  4. 《DSP using MATLAB》Problem 2.18

    1.代码: function [y, H] = conv_tp(h, x) % Linear Convolution using Toeplitz Matrix % ----------------- ...

  5. 《DSP using MATLAB》Problem 8.18

    代码: %% ------------------------------------------------------------------------ %% Output Info about ...

  6. 《DSP using MATLAB》Problem 5.15

    代码: %% ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ %% Output In ...

  7. 《DSP using MATLAB》Problem 4.15

    只会做前两个, 代码: %% ---------------------------------------------------------------------------- %% Outpu ...

  8. 《DSP using MATLAB》Problem 7.27

    代码: %% ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ %% Output In ...

  9. 《DSP using MATLAB》Problem 7.26

    注意:高通的线性相位FIR滤波器,不能是第2类,所以其长度必须为奇数.这里取M=31,过渡带里采样值抄书上的. 代码: %% +++++++++++++++++++++++++++++++++++++ ...

随机推荐

  1. php--------删除数组的第一个元素和最后一个元素

    对于一个php数组,该如何删除该数组的第一个元素或者最后一个元素呢?其实这两个过程都可以通过php自带的函数 array_pop 和 array_shift 来完成,下面就具体介绍一下如何来操作. ( ...

  2. linux中whereis、which、find、location的区别和用法

    摘自:https://www.cnblogs.com/kex1n/p/5233821.html 1. find find是最常见和最强大的查找命令,你可以用它找到任何你想找的文件. find的使用格式 ...

  3. 最小生成树(模板 Kruskal)

    Description 某省调查乡村交通状况,得到的统计表中列出了任意两村庄间的距离.省政府“畅通工程”的目标是使全省任何两个村庄间都可以实现公路交通(但不一定有直接的公路相连,只要能间接通过公路可达 ...

  4. SQL ltrim() 和 rtrim() 函数

    LTRIM删除起始空格后返回字符表达式. 语法LTRIM ( character_expression ) 参数character_expression 是字符或二进制数据表达式.character_ ...

  5. http 请求和格式

    get 请求:从指定的资源请求数据. post请求:向指定的资源提交要被处理的数据. head请求:与 GET 相同,但只返回 HTTP 报头,不返回资源实体. option请求:返回服务器支持的 H ...

  6. CSS3提供的transition动画

    <!DOCTYPE html><html xmlns="http://www.w3.org/1999/xhtml"><head>    < ...

  7. IOS UI总结

    一.UIView常见属性 1.frame  位置和尺寸(以父控件的左上角为原点(0,0)) 2.center 中点(以父控件的左上角为原点(0,0)) 3.bounds  位置和尺寸(以自己的左上角为 ...

  8. forget word out2

      1★ dictionary / dik ʃ ən əri   dict   2★ fy => faction f æk ʃ ən 派别  

  9. this常见错误

    <!doctype html> <html> <head> <meta charset="utf-8"> <meta name ...

  10. storage路径问题

    1 概念总述 android开发中,关于存储路径,我们经常听到以下几个概念:内存.内部存储和外部存储,现在我们就来详细说说这三者区别与联系. 内存:英文中记为memory,即RAM 内部存储:英文记为 ...