フィルターのクリア

How can I create a custom probability distribution?

26 ビュー (過去 30 日間)
L'O.G.
L'O.G. 2022 年 2 月 18 日
回答済み: Paul 2022 年 2 月 18 日
I want to define a custom discrete probability mass function. Can I do this using `makedist` or perhaps some other function, if so how?

採用された回答

Paul
Paul 2022 年 2 月 18 日
Check out the doc page for distributionFitter and the associated Distribution Fitter app. Despite the name, the app can be used to define a custom distribution that you can subsequently use to create objects of that distribution.

その他の回答 (1 件)

David Hill
David Hill 2022 年 2 月 18 日
編集済み: David Hill 2022 年 2 月 18 日
p = [0.2 0.3 0.5];%probabilities
v = [3 7 10];%discrete values
% P(X=3)=0.2, P(X=7)=0.3 and P(X=10)=0.5 Probability Mass Function
n = 10000;%number of samples
c = cumsum([0,p(:).']);
c = c/c(end);%ensure cumulative is 1
[~,i] = histc(rand(1,n),c);
r = v(i);%map, generates n samples with the probability mass function provided
  1 件のコメント
L'O.G.
L'O.G. 2022 年 2 月 18 日
編集済み: L'O.G. 2022 年 2 月 18 日
Thanks, but I don't think that's quite it. I guess I was unclear. Perhaps I should've said: I'd like to create a custom probability distribution object. I'd like to do that to be able to define a discrete pmf. That's why modifying makedist sounds like a possibility.

サインインしてコメントする。

タグ

製品


リリース

R2021b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by