码迷,mamicode.com
首页 > 其他好文 > 详细

《DSP using MATLAB》示例Example5.19

时间:2016-12-16 09:41:00      阅读:204      评论:0      收藏:0      [点我收藏+]

标签:alt   seq   set   class   pre   hit   imp   示例   mat   

技术分享

代码:

n = 0:9; x = n+1; h = [1,0,-1]; N = 6; y = ovrlpsav(x,h,N);

nh = 0:1:length(h)-1;
ny = 0:1:length(y)-1;
%% -----------------------------------------------------------------
%%                  START   a
%% -----------------------------------------------------------------
figure(‘NumberTitle‘, ‘off‘, ‘Name‘, ‘Exameple5.19 ‘)
set(gcf,‘Color‘,‘white‘); 
subplot(3,1,1); stem(n,x); title(‘sequence x(n)‘); %axis([0,5,0,5]);
xlabel(‘n‘); ylabel(‘x(n)‘); grid on;
subplot(3,1,2); stem(nh,h); title(‘impulse sequence h(n)‘); %axis([0,5,0,5]);
xlabel(‘n‘); ylabel(‘h(n)‘); grid on;
subplot(3,1,3); stem(ny,y); title(‘Linear Convolution sequence x3(n)‘); %axis([0,10,-3,5]);
xlabel(‘n‘); ylabel(‘y(n)‘); grid on;

%% -----------------------------------------------------------------
%%                  END   a
%% -----------------------------------------------------------------

  运行结果:

技术分享

技术分享

 

《DSP using MATLAB》示例Example5.19

标签:alt   seq   set   class   pre   hit   imp   示例   mat   

原文地址:http://www.cnblogs.com/ky027wh-sx/p/6185526.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!