⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 lssb_dem.m

📁 详细介绍了cdma通信系统功率控制的算法
💻 M
字号:
% lssb_dem.m% Matlab demonstration script for LSSB-AM demodulation. The message signal% is +1 for 0 < t < t0/3, -2 for t0/3 < t < 2t0/3 and zero otherwise. echo on t0=.15;                              	% signal durationts=1/1500;                           	% sampling intervalfc=250;                              	% carrier frequencyfs=1/ts;                             	% sampling frequencydf=0.25;                             	% desired freq.resolutiont=[0:ts:t0];                         	% time vector% the message vectorm=[ones(1,t0/(3*ts)),-2*ones(1,t0/(3*ts)),zeros(1,t0/(3*ts)+1)];c=cos(2*pi*fc.*t);                   	% carrier vectorudsb=m.*c;                           	% DSB modulated signal[UDSB,udsb,df1]=fftseq(udsb,ts,df);  	% Fourier transformUDSB=UDSB/fs;                        	% scalingn2=ceil(fc/df1);                     	% location of carrier in freq. vector% remove the upper sideband from DSBUDSB(n2:length(UDSB)-n2)=zeros(size(UDSB(n2:length(UDSB)-n2)));ULSSB=UDSB;                          	% generate LSSB-AM spectrum[M,m,df1]=fftseq(m,ts,df);           	% spectrum of the message signalM=M/fs;                              	% scalingf=[0:df1:df1*(length(M)-1)]-fs/2;    	% frequency vectoru=real(ifft(ULSSB))*fs;              	% generate LSSB signal from spectrum% mixingy=u.*cos(2*pi*fc*[0:ts:ts*(length(u)-1)]);	[Y,y,df1]=fftseq(y,ts,df);           	% spectrum of the output of the mixerY=Y/fs;                              	% scalingf_cutoff=150;                        	% choose the cutoff freq. of the filtern_cutoff=floor(150/df);              	% design the filterH=zeros(size(f));                    H(1:n_cutoff)=4*ones(1,n_cutoff);    % spectrum of the filter outputH(length(f)-n_cutoff+1:length(f))=4*ones(1,n_cutoff);DEM=H.*Y;			     	% spectrum of the filter outputdem=real(ifft(DEM))*fs;              	% filter outputpause % Press a key to see the effect of mixingclfsubplot(3,1,1)plot(f,fftshift(abs(M)))title('Spectrum of the the Message Signal')xlabel('Frequency')subplot(3,1,2)plot(f,fftshift(abs(ULSSB)))title('Spectrum of the Modulated Signal')xlabel('Frequency')subplot(3,1,3)plot(f,fftshift(abs(Y)))title('Spectrum of the Mixer Output')xlabel('Frequency')pause % Press a key to see the effect of filtering on the mixer outputclfsubplot(3,1,1)plot(f,fftshift(abs(Y)))title('Spectrum of the Mixer Output')xlabel('Frequency')subplot(3,1,2)plot(f,fftshift(abs(H)))title('Lowpass Filter Characteristics')xlabel('Frequency')subplot(3,1,3)plot(f,fftshift(abs(DEM)))title('Spectrum of the Demodulator output')xlabel('Frequency')pause % Press a key to see the message and the demodulator output signalssubplot(2,1,1)plot(t,m(1:length(t)))title('The Message Signal')xlabel('Time')subplot(2,1,2)plot(t,dem(1:length(t)))title('The Demodulator Output')xlabel('Time')

⌨️ 快捷键说明

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