MATLAB绘制常用分布密度函数图

%密度函数
x1=-1:0.01:4;
y1=unifpdf(x1,0,3);              %均匀分布
x2=-5:0.001:5;
y2=normpdf(x2,0,1);              %正态分布
x3=0:0.001:10;
y3=exppdf(x3,3);                 %指数分布
x4=-5:0.01:25;
y4=binopdf(x4,1000,0.01);        %二项分布
x5=0:0.001:10;
y5=geopdf(x5,0.25);              %几何分布
x6=-10:50;
y6=poisspdf(x6,10);              %泊松分布
subplot(2,3,1);plot(x1,y1);title('均匀分布(a=0,b=3)');
subplot(2,3,2);plot(x2,y2);title('标准正态分布');
subplot(2,3,3);plot(x3,y3);title('指数分布(B=3)');
subplot(2,3,4);plot(x4,y4);title('二项分布(n=1000,p=0.01)');
subplot(2,3,5);plot(x5,y5);title('几何分布(p=0.25)');
subplot(2,3,6);plot(x6,y6);title('泊松分布(入=10)');

密度函数图如下:

MATLAB绘制常用分布密度函数图_第1张图片

 

你可能感兴趣的:(MATLAB基础,随机信号分析)