fig4_2.m
上传用户:szahd2008
上传日期:2020-09-25
资源大小:1275k
文件大小:1k
源码类别:

传真(Fax)编程

开发平台:

Matlab

  1. % This program can be used tore-produce Figure 4.2 of text
  2. clear all
  3. close all
  4. xg = linspace(-6,6,1500); % randowm variable between -4 and 4
  5. xr = linspace(0,6,1500); % randowm variable between 0 and 8
  6. mu = 0; % zero mean Gaussain pdf mean
  7. sigma = 1.5; % standard deviation (sqrt(variance) 
  8. ynorm = normpdf(xg,mu,sigma); % use MATLAB funtion normpdf
  9. yray = raylpdf(xr,sigma); % use MATLAB function raylpdf
  10. plot(xg,ynorm,'k',xr,yray,'k-.');
  11. grid
  12. legend('Gaussian pdf','Rayleigh pdf')
  13. xlabel('x')
  14. ylabel('Probability density')
  15. gtext('mu = 0; sigma = 1.5')
  16. gtext('sigma =1.5')