ip_02_10.m

来自「Communition MATLAB (Proakis)书中的源程序」· M 代码 · 共 19 行

M
19
字号
% MATLAB script for Illustrative Problem 10, Chapter 2.
N=1000;	               			% number of samples
for i=1:2:N,
   [X1(i) X1(i+1)]=gngauss;
   [X2(i) X2(i+1)]=gngauss;
end;		       			% standard Gaussian input noise processes	
A=[1 -0.9];	       			% lowpass filter parameters
B=1;
Xc=filter(B,A,X1);       
Xs=filter(B,A,X2);
fc=1000/pi;	       			% carrier frequency	
for i=1:N,
   band_pass_process(i)=Xc(i)*cos(2*pi*fc*i)-Xs(i)*sin(2*pi*fc*i);
end;		       			% T=1 is assumed
% Determine the autocorrelation and the spectrum of the band-pass process
M=50;
bpp_autocorr=Rx_est(band_pass_process,M);
bpp_spectrum=fftshift(abs(fft(bpp_autocorr)));
% plotting commands follow

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?