Ip_01_08.m
上传用户:loeagle
上传日期:2013-03-02
资源大小:1236k
文件大小:0k
源码类别:

通讯编程文档

开发平台:

Matlab

  1. % MATLAB script for Illustrartive Problem 8, Chapter 1.
  2. ts=0.001;                          
  3. fs=1/ts;                           
  4. t=[0:ts:10];                       
  5. x=cos(2*pi*47*t)+cos(2*pi*219*t);  
  6. p=spower(x);                        
  7. psd=spectrum(x,1024);              
  8. pause   % Press a key to see the power in the signal.
  9. p
  10. pause   % Press a key to see the power spectrum.
  11. specplot(psd,fs)