pdf of two distribution in mixture

조회 수: 6 (최근 30일)
Lakshit Chugh
Lakshit Chugh 2020년 5월 4일
댓글: Lakshit Chugh 2020년 5월 7일
How should i get pdf of 2 mixture beta and gamma if we have given mean =2 a=4,b=7 ? i have generated random variable

답변 (1개)

Jeff Miller
Jeff Miller 2020년 5월 4일
the pdf of the mixture is just the weighted average of the pdfs of the beta and gamma, something like
p_beta = 0.8; % probability of beta
X = 0.1:0.01:1; % whatever X range you want
mixpdf = p_beta*betapdf(X,{beta parameters go here}) + (1-p_beta)*gampdf(X,{gamma parameters go here})
  댓글 수: 4
Jeff Miller
Jeff Miller 2020년 5월 4일
OK, X can be your random data if you want the pdf's of those random data values.
I am pretty sure that I don't really understand what you are actually trying to compute.
Lakshit Chugh
Lakshit Chugh 2020년 5월 7일
actually i am trying to find histogram density and kernel density can you help me with that ?

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Statistics and Machine Learning Toolbox에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by