How to find probability mass function
14 次查看(过去 30 天)
显示 更早的评论

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?
0 个评论
采纳的回答
Elias Tiso
2020-10-28
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
2021-10-17
I get an error on mf=zeros(size(x(:)));
it says not enough arguments
'Not enough input arguments.'
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!