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

📄 pdf_phase.m

📁 无线移动信道的matlab源码 用于对无线通信信道的编程实现
💻 M
字号:
%--------------------------------------------------------------------% pdf_sim.m ---------------------------------------------------------%% Program for the computation of probability density functions p(z).%%--------------------------------------------------------------------% p_z=pdf_sim(xi_t,z,PLOT)%--------------------------------------------------------------------% Explanation of the input parameters:%% xi_t: deterministic process or time-domain signal to be analysed %       with respect to the probability density function p(z).% z: equidistant level vector% PLOT: plot of the resulting probability density function p(z), %       if PLOT==1function p_thita=pdf_phase(sigma_1_2,sigma_2_2,thita,PLOT)if nargin==2,   PLOT=0;enda1=sigma_2_2*(cos(thita).*cos(thita));a2=sigma_1_2*(sin(thita).*sin(thita));c=a1+a2;b=sqrt(sigma_1_2*sigma_2_2);p_thita=b./(2*pi.*c);if PLOT==1,     plot(thita,p_thita)   xlabel('angle(rad)')   ylabel('p(angle)')end

⌨️ 快捷键说明

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