Labfans是一个针对大学生、工程师和科研工作者的技术社区。 | 论坛首页 | 联系我们(Contact Us) |
![]() |
|
![]() |
#1 |
初级会员
注册日期: 2008-11-24
年龄: 44
帖子: 1
声望力: 0 ![]() |
![]()
如何画出均匀,指数和weibull分布的概率密度函数图
Can you (re)produce a figure that compares the capacity of exponential distribution (mean 100), uniform distribution (from 0 to 200), and Weibull distribution (\beta=0.5, and \mu=50), as a function of collision probability constraint, assuming the percentage of idle time is 50% in all cases? If so, please send me the figure as well as the matlab code. 问题如上 谢谢各位 |
![]() |
![]() |
![]() |
#2 |
初级会员
注册日期: 2008-12-17
年龄: 43
帖子: 2
声望力: 0 ![]() |
![]()
clc;
clear; x1=0:0.1:200; y1=unifpdf(x1,0,200) ; figure plot(x1,y1) axis([0,200,0,0.02]) x2=0.4:0.01:0.6; y2=wblpdf(x2,0.5,50) ; figure plot(x2,y2) x3=0:0.1:200; y3=exppdf(x3,100) ; figure plot(x3,y3) |
![]() |
![]() |
![]() |
|
|
![]() |
||||
主题 | 主题作者 | 版面 | 回复 | 最后发表 |
[分享]NeuralNetwork_BP.rar | guofeng0108 | MATLAB论坛 | 0 | 2008-12-03 15:47 |
[求助]高斯脉冲 matlab 程序 | slimchao | MATLAB论坛 | 0 | 2008-11-14 20:17 |
急问,如何采用所给数据进行曲面拟合? | ormosia | MATLAB论坛 | 3 | 2008-10-21 10:44 |
[求助]在SIMULINK里,如何将inegrator上方的箭头移到下面去 | yijianmei | MATLAB论坛 | 1 | 2008-07-24 10:15 |
[求助]在GUI中利用按钮来导入图片 | yangkai12 | MATLAB论坛 | 0 | 2008-04-20 21:55 |