gpt4 book ai didi

matlab - 我们如何在 MATLAB 中找到 gamma 分布的百分位数或分位数?

转载 作者:太空宇宙 更新时间:2023-11-03 20:28:30 24 4
gpt4 key购买 nike

假设我们在 MATLAB 中有这个 Gamma 分布:

enter image description here

我想要这部分分布具有更高的密度(x 轴范围)。我如何在 MATLAB 中提取它?我使用 histfit 函数拟合此分布。

enter image description here

附言。我的代码:

figure;
histfit(Data,20,'gamma');
[phat, pci] = gamfit(Data);

phat =

11.3360 4.2276

pci =

8.4434 3.1281
15.2196 5.7136

最佳答案

当您使用 [phat, pci] = gamfit(Data); 将 Gamma 分布拟合到您的数据时,phat 包含 MLE 参数。您可以将其插入 gaminv:

x = gaminv(p, phat(1), phat(2));

其中 p 是百分比向量,例如p = [.2, .8]

关于matlab - 我们如何在 MATLAB 中找到 gamma 分布的百分位数或分位数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34045686/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com