问题:如何在Matlab中查找和逻辑随机变量的概率分布函数?
我知道在matlab中有一个名为cdfplot的CDF函数,但是我似乎找不到pdfplot。
% empirical pdf
% logistic random variable
LG1 = random( makedist('Logistic'),N,1);
mean(LG1)
histogram(LG1(:,1),100), axis([0 1 0 1200])
我的代码给了我一个非常奇怪的结果,我真的不知道该怎么理解。
我还参考了以下资源:
https://www.mathworks.com/help/stats/cdfplot.html https://www.mathworks.com/help/stats/prob.normaldistribution.random.html
谢谢!