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

📄 cdf_sim.m

📁 无线通信信道测试的MATLAB仿真算法和其验证
💻 M
字号:
%--------------------------------------------------------------------% cdf_sim.m ---------------------------------------------------------%% Program for the computation of cumulative distribution% functions F(r).%%--------------------------------------------------------------------% F_r=cdf_sim(xi_t,r,PLOT)%--------------------------------------------------------------------% Explanation of the input parameters:%% xi_t: deterministic process or time-domain signal to be analysed %       with respect to the cumulative distribution function F(r).% r: level vector% PLOT: plot of the resulting cumulative distribution function F(r),%       if PLOT==1function F_r=cdf_sim(xi_t,r,PLOT)if nargin==2,   PLOT=0;endF_r=zeros(size(r));for l=1:length(r),    F_r(l)=length(find(xi_t<=r(l)));endF_r=F_r/length(xi_t);if PLOT==1,   plot(r,F_r,'rx')   xlabel('r')   ylabel('F(r)')end

⌨️ 快捷键说明

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