How can I create a custom probability distribution?
이전 댓글 표시
I want to define a custom discrete probability mass function. Can I do this using `makedist` or perhaps some other function, if so how?
채택된 답변
추가 답변 (1개)
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
카테고리
도움말 센터 및 File Exchange에서 Descriptive Statistics에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!