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

DSP using MATLAB 示例Example2.4

时间:2016-10-31 09:07:49      阅读:184      评论:0      收藏:0      [点我收藏+]

标签:step   src   pre   images   eve   color   matlab   image   改变   

技术分享

n = [0:10]; x = stepseq(0,0,10) - stepseq(10,0,10); 
[xe,xo,m] = evenodd(x,n);

set(gcf,‘Color‘,[1,1,1])                  % 改变坐标外围背景颜色
stem(n,x); title(‘Rectangular Pulse‘);
xlabel(‘n‘); ylabel(‘x(n)‘) ; axis([-10,10,0,1.2])
grid on

figure
set(gcf,‘Color‘,[1,1,1]) 
stem(m,xe); title(‘Even Part‘);
xlabel(‘n‘); ylabel(‘xe(n)‘); axis([-10,10,0,1.2])
grid on

figure
set(gcf,‘Color‘,‘white‘)
stem(m,xo); title(‘Odd Part‘);
xlabel(‘n‘); ylabel(‘xe(n)‘); axis([-10,10,-0.6,0.6])
grid on

结果:

技术分享  

技术分享

技术分享

 

DSP using MATLAB 示例Example2.4

标签:step   src   pre   images   eve   color   matlab   image   改变   

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

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