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

📄 dsb2.m

📁 contemporarycommunicatonsystem-using MATLAB经典书目源程序!
💻 M
字号:
% dsb2.m% Matlab demonstration script for DSB-AM modulation. The message signal% is m(t)=sinc(100t). echo on t0=.2;						% signal durationts=0.001;					% sampling intervalfc=250;						% carrier frequencysnr=20;						% SNR in dB (logarithmic)fs=1/ts; 					% sampling frequencydf=0.3;                                        	% required freq. resolutiont=[-t0/2:ts:t0/2]; 				% time vectorsnr_lin=10^(snr/10);				% linear SNRm=sinc(100*t); 					% the message signalc=cos(2*pi*fc.*t);				% the carrier signalu=m.*c;						% the DSB-AM modulated signal[M,m,df1]=fftseq(m,ts,df);                     	% Fourier transformM=M/fs;                                        	% scaling[U,u,df1]=fftseq(u,ts,df);                    	% Fourier transformU=U/fs;                                       	% scalingf=[0:df1:df1*(length(m)-1)]-fs/2;           	% frequency vectorsignal_power=spower(u(1:length(t)));           	% compute modulated signal powernoise_power=signal_power/snr_lin;		% compute noise powernoise_std=sqrt(noise_power);			% compute noise standard deviationnoise=noise_std*randn(1,length(u));            	% generate noise sequencer=u+noise;					% add noise to the modulated signal[R,r,df1]=fftseq(r,ts,df);                     	% Fourier transformR=R/fs;                                        	% scalingpause  % Press a key to show the modulated signal powersignal_powerpause  %Press any key to see a plot of the message clfsubplot(2,2,1)plot(t,m(1:length(t)))xlabel('Time')title('The message signal')   pause % Press any key to see a plot of the carriersubplot(2,2,2)plot(t,c(1:length(t)))xlabel('Time')title('The carrier') pause  % Press any key to see a plot of the modulated signalsubplot(2,2,3)plot(t,u(1:length(t)))xlabel('Time')title('The modulated signal') pause   % Press any key to see a plot  of the magnitude of the message and the	% modulated signal in the frequency domain.subplot(2,1,1)plot(f,abs(fftshift(M)))xlabel('Frequency')title('Spectrum of the message signal')subplot(2,1,2)plot(f,abs(fftshift(U)))title('Spectrum of the modulated signal')xlabel('Frequency') pause  % Press a key to see a noise samplesubplot(2,1,1)plot(t,noise(1:length(t)))title('noise sample') xlabel('Time')pause  % Press a key to see the modulated signal and noisesubplot(2,1,2)plot(t,r(1:length(t)))title('Signal and noise')xlabel('Time')pause  % Press a key to see the modulated signal and noise in freq. domainsubplot(2,1,1)plot(f,abs(fftshift(U)))title('Signal spectrum')xlabel('Frequency')subplot(2,1,2) plot(f,abs(fftshift(R))) title('Signal and noise spectrum')xlabel('Frequency')

⌨️ 快捷键说明

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