Good afternoon, I'm trying to use the finitepmf function to find the probability mass function. However, the current version of matlab doesn't have the finitepmf. Can anyone send me an example of an alternative way to solve pmf so i can get example 5.26 working?

 채택된 답변

Elias Tiso
Elias Tiso 2020년 10월 28일

1 개 추천

I had the same problem. I found a function definition for finitepmf() within this document:
function pmf=finitepmf(sx,px,x)
% finite random variable X:
% vector sx of sample space
% elements {sx(1),sx(2), ...}
% vector px of probabilities
% px(i)=P[X=sx(i)]
% Output is the vector
% pmf: pmf(i)=P[X=x(i)]
pmf=zeros(size(x(:)));
for i=1:length(x)
pmf(i)= sum(px(find(sx==x(i))));
end
end

댓글 수: 1

Jehan Alsulaiman
Jehan Alsulaiman 2021년 10월 17일
I get an error on mf=zeros(size(x(:)));
it says not enough arguments
'Not enough input arguments.'

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

추가 답변 (0개)

카테고리

도움말 센터File Exchange에서 Parallel Computing Toolbox에 대해 자세히 알아보기

태그

질문:

2020년 10월 27일

댓글:

2021년 10월 17일

Community Treasure Hunt

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

Start Hunting!

Translated by