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

📄 c8_welchp.m

📁 很多MATLAB的无线系统仿真实例。强烈推荐!
💻 M
字号:
% File: c8_welchp.m
% Software given here is to accompany the textbook: W.H. Tranter, 
% K.S. Shanmugan, T.S. Rappaport, and K.S. Kosbar, Principles of 
% Communication Systems Simulation with Wireless Applications, 
% Prentice Hall PTR, 2004.
%
fs = 16;
x = random_binary(1024,fs)+i*random_binary(1024,fs);
for nwin=1:4
   nwindow = nwin*1024;
   [pxx,f] = pwelch(x,nwindow,[],[],fs);
   pxx = pxx/sum(sum(pxx));
   n2 = length(f)/2;
   pxxdB = 10*log10(pxx/pxx(1));
   ptheory = sin(pi*f+eps)./(pi*f+eps);
   ptheory = ptheory.*ptheory;
   ptheorydB = 10*log10(ptheory/ptheory(1));
   subplot(2,2,nwin)
   plot(f(1:n2),pxxdB(1:n2),f(1:n2),ptheorydB(1:n2))
   ylabel('PSD in dB')
   xx = ['window length = ',num2str(nwindow)];
   xlabel(xx)
   axis([0 8 -50, 10]); grid;
end   
% End of script file.
 

⌨️ 快捷键说明

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