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

DSP using MATLAB 示例Example2.3

时间:2016-10-30 09:22:11      阅读:229      评论:0      收藏:0      [点我收藏+]

标签:grid   exp   sub   set   运行   png   .com   分享   技术分享   

技术分享

n = [-10:1:10]; alpha = -0.1+0.3j;                % 
x = exp(alpha*n);

% subplot(2,1,1);
set(gcf,‘Color‘,[1,1,1])                  % 改变坐标外围背景颜色
stem(n,real(x)); title(‘real part‘); xlabel(‘n‘); 
grid on
figure 
set(gcf,‘Color‘,‘white‘)                                   % 新生成一张图
stem(n,imag(x)); title(‘imaginary part‘); xlabel(‘n‘); %ylabel(‘x2(n)‘);
grid on
figure
set(gcf,‘Color‘,‘white‘)
stem(n,abs(x)); title(‘magnitude part‘); xlabel(‘n‘);
grid on
figure
set(gcf,‘Color‘,‘white‘)
stem(n,(180/pi)*angle(x)); title(‘phase part‘); xlabel(‘n‘);
grid on

运行结果:

技术分享 

技术分享

技术分享

技术分享

 

DSP using MATLAB 示例Example2.3

标签:grid   exp   sub   set   运行   png   .com   分享   技术分享   

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

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