ip_02_10.m

来自「现代通信系统(matlab版) 书中的matlab源代码」· M 代码 · 共 25 行

M
25
字号
% MATLAB script for Illustrative Problem 2.10.
clear
N=1000;                         % number of samples
for i=1:2:N,
   [X1(i) X1(i+1)]=gngauss;
   [X2(i) X2(i+1)]=gngauss;
  echo off ;
end;                        % standard Gaussian input noise processes   
echo on ;
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);
   echo off ; 
end;                        % T=1 is assumed.
echo on; 
% Determine the autocorrelation and the spectrum of the bandpass 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 + -
显示快捷键?